From 0aeb82c1b6002c6a86b812070926b96d58b8798d Mon Sep 17 00:00:00 2001 From: Tony DiCola Date: Fri, 24 Oct 2014 17:38:36 -0700 Subject: [PATCH] Update parsing example to show new long/lat degrees values. --- examples/parsing/parsing.pde | 4 ++++ 1 file changed, 4 insertions(+) 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);