We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f10be97 commit a5c1bf6Copy full SHA for a5c1bf6
1 file changed
examples/KitchenSink/KitchenSink.ino
@@ -41,13 +41,13 @@ void loop()
41
Serial.print(gps.location.age());
42
Serial.print(F("ms Raw Lat="));
43
Serial.print(gps.location.rawLatDegrees());
44
- Serial.print(" and ");
+ Serial.print("[+");
45
Serial.print(gps.location.rawLatBillionths());
46
- Serial.print(F(" billionths, Raw Long="));
+ Serial.print(F(" billionths], Raw Long="));
47
Serial.print(gps.location.rawLngDegrees());
48
- Serial.print(".");
49
Serial.print(gps.location.rawLngBillionths());
50
- Serial.print(F(" billionths, Lat="));
+ Serial.print(F(" billionths], Lat="));
51
Serial.print(gps.location.lat(), 6);
52
Serial.print(F(" Long="));
53
Serial.println(gps.location.lng(), 6);
0 commit comments