Search found 3 matches
- Thursday 08 August 2013 0:14
- Forum: Other questions and discussions
- Topic: Domoticz and LightwaveRF with wifi Link
- Replies: 21
- Views: 9296
Re: Domoticz and LightwaveRF with wifi Link
Its probably a bit messy but what about; commandArray = {} if (devicechanged['WiFi'] == 'On') then print('Switched LightwaveRF On') os.execute("nc -u -w1 192.168.1.100 9760 < /usr/local/path/to/file/on") for i, v in pairs(otherdevices) do print(i, v) end elseif (devicechanged['WiFi'] == 'Off') then ...
- Wednesday 07 August 2013 10:05
- Forum: Other questions and discussions
- Topic: Domoticz and LightwaveRF with wifi Link
- Replies: 21
- Views: 9296
Re: Domoticz and LightwaveRF with wifi Link
Thanks for the code and the reply, that explains it all very nicely. The RFXCOM has arrived, and as expected works with LightwaveRF and Domoticz straight out of the box. However, since I've started looking at the wifi link I'd like to see if that can be made to work as well - just for the sake of it ...
- Sunday 04 August 2013 13:16
- Forum: Other questions and discussions
- Topic: Domoticz and LightwaveRF with wifi Link
- Replies: 21
- Views: 9296
Domoticz and LightwaveRF with wifi Link
Whilst waiting for a RFXCOM transceiver to arrive I've been wondering if I can get Domoticz to work with a Lightwave RF Wifi Link. The Wifi Link receives a UDP datagram which it converts to a suitable 433MHz signal and turns On/Off the LightwaveRF device. So on my Pi I've added lua-socket via apt ...