Gps

derez

Expert
Licensed User
Longtime User
Erel
can you elaborate on how to get the satelites data ?

B4X:
Sub GPS_GpsStatus (Satellites As List)

End Sub
 

Cor

Active Member
Licensed User
Longtime User
B4X:
'globals
dim mySatelites as list

myStatelites.initialize

Sub GPS_GpsStatus (Satellites As List)
mySatelites=Satelites

End Sub

sub show Satelites
DIM RESULT AS INT
result = InputList(mySatelites, "Satelitesfound",-1)
end sub

this should work, or do you mean specific satelite data?

grCor
 
Upvote 0
Top