Hi, I have purchased some RGB LED lights which can be controlled using a central controller that accepts basic UDP network packets to make it change.
These are mine (v2):
http://www.limitlessled.com/dev/They are also sold under the mi-light and easybulb brand names - although I believe they use slightly different commands depending on version.
I tried to create a template and made a basic ruby script to turn them on similar to this:
require 'socket'
socket = UDPSocket.new
socket.send([0x22, 0x00, 0x55].pack('C*'), 0, '192.168.80.240', 50000)
I have tried a few different things and was wandering where I was going wrong? The icon to turn them on/off appear in the orbiters but they dont react to the orbiters. I also believe they don't report status (on/off, etc..) they only accept commands.
Cheers