Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- term.clear()
- while true do
- local x,y,z = gps.locate()
- if x ~= nil then
- term.setCursorPos(1,1)
- term.write("Pocket GPS")
- term.setCursorPos(1,2)
- term.write(x..","..y..","..z)
- end
- sleep(0.01)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement