Posted 29 May 2015 - 10:28 PM
I'm setting up a system where I need the program to terminate itself after 10 seconds. I'm using rednet api, when the signal is not sent it's just stuck waiting for it to come by. But I want it to stop listening for that protocol and reboot the computer after 10 seconds. With rednet I can't just put senderID, message = rednet.receive("protocol",10) because that would run all the other lines of code after it, which is not what I want. Little help?…