From 928a58d6364e9472f3a7ad55885e6cb9e9ee9f5b Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 14 Dec 2025 14:54:48 -0500 Subject: [PATCH] Update main.h add GPS position holder --- main.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/main.h b/main.h index 4ad8b1f0..c0928529 100644 --- a/main.h +++ b/main.h @@ -39,16 +39,17 @@ #define PRES 3 #define ALT 4 #define HUMI 5 -#define GYRO_X 7 // MPU6050 is posisition 6 +#define GYRO_X 7 // MPU6050 label is posisition 6 #define GYRO_Y 8 #define GYRO_Z 9 #define ACCEL_X 10 #define ACCEL_Y 11 #define ACCEL_Z 12 -#define GPS1 14 // GPS is position 13 -#define GPS2 15 -#define GPS3 16 -#define DTEMP 18 // TMP is position 17 +#define GPS 13 // GPS label +#define GPS1 14 // latitude +#define GPS2 15 // longitude +#define GPS3 16 // altitude +#define DTEMP 18 // TMP label is position 17 #define XS1 20 // NEW user defined token will be position 19 #define XS2 21 #define XS3 22