Jump to content


r05ty's Content

There have been 2 items by r05ty (Search limited from 29-March 23)


By content type

See this member's

Sort by                Order  

#247046 Using peripheral methods via wireless modem

Posted by r05ty on 01 March 2016 - 02:46 PM in Ask a Pro

Thanks for your answers.
I used solution of HPWebcamAble, and after some editing and troubleshooting I managed to make it work flawlessly.

To KingofGamesYami:
For my case I did something similiar, but with determining if its argument given or not.



#246759 Using peripheral methods via wireless modem

Posted by r05ty on 27 February 2016 - 03:27 PM in Ask a Pro

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:

-- 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