mbed port of the TinyGPSPlus library for Arduino, by Mikal Hart. The port is heavily inspired by Sergey Drobyshevskiy (dROb)'s port of the TinyGPS library.

Dependents:   ZZ_SSL_Main_L476 Sample_program_Font72

Fork of TinyGPSPlus by カレヴィ アンダース

Revision:
1:a4d6efebcef8
Parent:
0:2576f9f1dc71
Child:
2:9fb16575b0f8
--- a/TinyGPSPlus.cpp	Wed Sep 14 01:38:28 2016 +0000
+++ b/TinyGPSPlus.cpp	Thu Aug 30 18:53:08 2018 +0000
@@ -413,7 +413,7 @@
 uint8_t TinyGPSTime::hour()
 {
    updated = false;
-   return time / 1000000;
+   return ((time / 1000000)+1); //UK time
 }
 
 uint8_t TinyGPSTime::minute()