Posted 27 February 2016 - 03:27 PM
Hello
I would like to make some sort of network with wireless modems to control my big reactor and turbines.
I'm thinking something like this - main computer will send message to computer connected to reactor:
This message will caught secondary computer
Thanks for your reply
I would like to make some sort of network with wireless modems to control my big reactor and turbines.
I'm thinking something like this - main computer will send message to computer connected to reactor:
-- hey activate that reactor
modem.transmit(1, 2, "setActive(true)")
This message will caught secondary computer
local event, modemSide, senderChannel, replyChannel, message, senderDistance = os.pullEvent("modem_message")
-- message received, turning up
reactor.message() -- but actually is going to use "reactor.setActive(true)"
Thanks for your reply