The problem? Well, I have the pocket computer printing my coords and it looks fine, but when I send them over rednet to the turtle, they get some funky numbers.
So the half and half situation is…Can you fix my program so I can move on? Or can you make it!
Heres the turtle code.(Receiving)
print(rednet.receive())
print(rednet.receive())
print(rednet.receive())
And here's the pocket computer code.(Sender)
rednet.open("back")
x, y, z, w, q, v = gps.locate()
print(x)
print(y)
print(z)
print(w)
rednet.broadcast(x)
rednet.broadcast(y)
rednet.broadcast(z)
rednet.broadcast(w)
Thank you! And I really hope I don't have to over-complicate this.