sPhone/src/apps/gps.lua

6 lines
148 B
Lua
Raw Normal View History

2015-08-29 18:45:37 +02:00
local x, y, z = gps.locate(0)
if not x then
x, y, z = "?", "?", "?"
2015-08-19 11:45:35 +02:00
end
2015-09-16 15:39:44 +02:00
sPhone.winOk("X Y Z", math.ceil(x).." "..math.ceil(y).." "..math.ceil(z))