GPS
Overview
GPS class
new Thread()
{
public void run()
{
gps = new GPS();
for (int i = 0; i < 60*2 && gps.location[0] == 0; i++) // wait 60s
{
Vm.safeSleep(500);
try
{
gps.retrieveGPSData();
}
catch (Exception eee)
{
eee.printStackTrace();
break;
}
}
}
}.start();Atributes
methods
References
Last updated
Was this helpful?