Skip to content

Instantly share code, notes, and snippets.

@xbmcnut
Last active August 31, 2020 05:21
Show Gist options
  • Save xbmcnut/4c8a3692939c4eee81d746353cc459a7 to your computer and use it in GitHub Desktop.
Save xbmcnut/4c8a3692939c4eee81d746353cc459a7 to your computer and use it in GitHub Desktop.
Arilux RGB Smart Bulb with Tasmota
Light is now picked up using setoption 19 1 (discovery)
@xbmcnut
Copy link
Author

xbmcnut commented Aug 31, 2020

# 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

@xbmcnut
Copy link
Author

xbmcnut commented Aug 31, 2020

# 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