diff --git a/examples/parsing/parsing.pde b/examples/parsing/parsing.pde index a4656d3..543a7bf 100644 --- a/examples/parsing/parsing.pde +++ b/examples/parsing/parsing.pde @@ -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);