I have a number of these lights in the house. They are all the same, under different names, all ~ $28-$35:
- MagicLight® Plus - WiFi Smart LED Light Bulb
- Flux WiFi Smart LED Light Bulb
- WIFI smart LED light Bulb
They use the Magic Home app to control:
And someone reverse engineered the protocol and created a nice and easy to use python script to control via command line:
I’ve integrated them crudely into my system as command line switches:
- platform: command_line
switches:
lamppost:
oncmd: "/usr/local/bin/flux_led.py 192.168.0.106 --on"
offcmd: "/usr/local/bin/flux_led.py 192.168.0.106 --off"
statecmd: "/usr/local/bin/flux_led.py 192.168.0.106 -i | awk '/ON/{ print \"on\" }'"
value_template: '{{ value == "on" }}'
Would it be so difficult, given the availability of the python script already written, to create a more feature rich, native LED color light? Could someone take on this challenge?