Android Question Anyway to use GPS time?

Beja

Expert
Licensed User
Longtime User
Hello all,
GPS satellites transmit accurate time for synchronization of receivers.. Atomic clock accuracy.
Is there any way to read that time in b4a?

Thanks in advance
 

DonManfred

Expert
Licensed User
Longtime User
Handle the NMEA Event of GPS.
B4X:
Sub GPS_NMEA (TimeStamp As Long, Sentence As String)
    
End Sub
 
Upvote 0
Top