Posted 30 August 2012 - 10:01 AM
Hello,
I have some problems with Rednet … i want to send a message between two computers
Computer 1 : (Sender)
Computer 2 : (Receiver)
When i launch the receiver program (on the Computer 2) then i launch the sender (on the Computer 1), the receiver don't receive any message (no errors message too).
Any ideas ?
Thanks
EDIT : And another question, in this video (https://www.youtube.com/watch?v=O6qy1dU4VrQ), this guy type in a computer and the screen are imediatly refreshed, how did he do ?
I have some problems with Rednet … i want to send a message between two computers
Computer 1 : (Sender)
rednet.open("right")
rednet.send(28, "TestMessage")
Computer 2 : (Receiver)
rednet.open("right")
id,message = rednet.receive
print(id)
print(message)
When i launch the receiver program (on the Computer 2) then i launch the sender (on the Computer 1), the receiver don't receive any message (no errors message too).
Any ideas ?
Thanks
EDIT : And another question, in this video (https://www.youtube.com/watch?v=O6qy1dU4VrQ), this guy type in a computer and the screen are imediatly refreshed, how did he do ?