Skip to content

Commit a5c1bf6

Browse files
committed
Minor cosmetic fixes to KitchenSink.ino
1 parent f10be97 commit a5c1bf6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

examples/KitchenSink/KitchenSink.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ void loop()
4141
Serial.print(gps.location.age());
4242
Serial.print(F("ms Raw Lat="));
4343
Serial.print(gps.location.rawLatDegrees());
44-
Serial.print(" and ");
44+
Serial.print("[+");
4545
Serial.print(gps.location.rawLatBillionths());
46-
Serial.print(F(" billionths, Raw Long="));
46+
Serial.print(F(" billionths], Raw Long="));
4747
Serial.print(gps.location.rawLngDegrees());
48-
Serial.print(".");
48+
Serial.print("[+");
4949
Serial.print(gps.location.rawLngBillionths());
50-
Serial.print(F(" billionths, Lat="));
50+
Serial.print(F(" billionths], Lat="));
5151
Serial.print(gps.location.lat(), 6);
5252
Serial.print(F(" Long="));
5353
Serial.println(gps.location.lng(), 6);

0 commit comments

Comments
 (0)