Skip to content

Commit d09a0d8

Browse files
authored
Fixing output to serial monitor for longitude
changed line 445 to Serial.print(",lng="); to fix this issue: #23
1 parent 4c92106 commit d09a0d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firmware/Weather_Shield_with_GPS/Weather_Shield_with_GPS.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ void printWeather()
442442

443443
Serial.print(",lat=");
444444
Serial.print(gps.location.lat(), 6);
445-
Serial.print(",lat=");
445+
Serial.print(",lng=");
446446
Serial.print(gps.location.lng(), 6);
447447
Serial.print(",altitude=");
448448
Serial.print(gps.altitude.meters());

0 commit comments

Comments
 (0)