Update parsing example to show new long/lat degrees values.
This commit is contained in:
parent
eb4e66dcbe
commit
0aeb82c1b6
|
|
@ -161,6 +161,10 @@ void loop() // run over and over again
|
|||
Serial.print(GPS.latitude, 4); Serial.print(GPS.lat);
|
||||
Serial.print(", ");
|
||||
Serial.print(GPS.longitude, 4); Serial.println(GPS.lon);
|
||||
Serial.print("Location (in degrees, works with Google Maps): ");
|
||||
Serial.print(GPS.latitudeDegrees, 4);
|
||||
Serial.print(", ");
|
||||
Serial.println(GPS.longitudeDegrees, 4);
|
||||
|
||||
Serial.print("Speed (knots): "); Serial.println(GPS.speed);
|
||||
Serial.print("Angle: "); Serial.println(GPS.angle);
|
||||
|
|
|
|||
Loading…
Reference in New Issue