Last active
August 31, 2020 05:21
-
-
Save xbmcnut/4c8a3692939c4eee81d746353cc459a7 to your computer and use it in GitHub Desktop.
Arilux RGB Smart Bulb with Tasmota
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Light is now picked up using setoption 19 1 (discovery) |
Author
xbmcnut
commented
Mar 4, 2020
More info on the bulb here https://tinkerman.cat/post/yet-another-wifi-light-bulb/
# alarm_light_flash_green:
alias: 'Green Light using Flash'
sequence:
- service: mqtt.publish
data:
topic: "cmnd/office_rgb/backlog"
payload: "color 0,255,0,0; power 3"
retain: false
- delay: 00:00:07
- service: light.turn_off
entity_id: light.rgb_w_light
# alarm_light_flash_blue:
alias: 'Blue Light using Flash'
sequence:
- service: mqtt.publish
data:
topic: "cmnd/office_rgb/backlog"
payload: "color 0,0,255,0; power 3" # color R,G,B,White Level; #
retain: false
- delay: 00:00:07
- service: light.turn_off
entity_id: light.rgb_w_light
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment