We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e8fe7e commit 88c9db5Copy full SHA for 88c9db5
1 file changed
examples/KitchenSink/KitchenSink.ino
@@ -43,12 +43,12 @@ void loop()
43
Serial.print(gps.location.rawLat().negative ? "-" : "+");
44
Serial.print(gps.location.rawLat().deg);
45
Serial.print("[+");
46
- Serial.print(gps.location.rawLat().billionths());
+ Serial.print(gps.location.rawLat().billionths);
47
Serial.print(F(" billionths], Raw Long="));
48
Serial.print(gps.location.rawLng().negative ? "-" : "+");
49
Serial.print(gps.location.rawLng().deg);
50
51
- Serial.print(gps.location.rawLng().billionths());
+ Serial.print(gps.location.rawLng().billionths);
52
Serial.print(F(" billionths], Lat="));
53
Serial.print(gps.location.lat(), 6);
54
Serial.print(F(" Long="));
0 commit comments