sPhone/src/apps/gps.lua

18 lines
328 B
Lua
Raw Normal View History

2015-08-19 11:45:35 +02:00
term.setBackgroundColor(colors.white)
term.clear()
term.setCursorPos(1,1)
term.setTextColor(colors.black)
print("Loading...")
while true do
term.clear()
x, y, z = gps.locate(0)
term.setCursorPos(1,3)
if not x then
x, y, z = "?", "?", "?"
end
print(" X: "..x)
print(" Y: "..y)
print(" Z: "..z)
sleep(1)
end