Skip to content

Commit

Permalink
Update parsing example to show new long/lat degrees values.
Browse files Browse the repository at this point in the history
  • Loading branch information
tdicola committed Oct 25, 2014
1 parent eb4e66d commit 0aeb82c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/parsing/parsing.pde
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0aeb82c

Please sign in to comment.