From f6c326744954e55d692343ae37c59596d7eb0eda Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 15 Apr 2023 09:19:25 -0400 Subject: [PATCH] .02 / 100 instead --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index 575084fa..2280dfda 100644 --- a/main.c +++ b/main.c @@ -764,8 +764,8 @@ int main(int argc, char * argv[]) { ; //payload = OFF; // turn off since STEM Payload is not responding } if ((millis() - newGpsTime) > 60000) { - longitude += rnd_float(-0.05, 0.05) / 1000.0; // was .05 - latitude += rnd_float(-0.05, 0.05) / 1000.0; + longitude += rnd_float(-0.02, 0.02) / 100.0; // was .05 + latitude += rnd_float(-0.02, 0.02) / 100.0; printf("GPS Location with Rnd: %f, %f \n", latitude, longitude); printf("GPS Location with Rnd: APRS %7.2f, %08.2f \n", toAprsFormat(latitude), toAprsFormat(longitude)); newGpsTime = millis();