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 Mar 4, 2020

I have a Arilux branded bulb that came in packaging the same as this https://templates.blakadder.com/wallfire-WF-05.html but it seems the mapping is not right. I need to figure out which of the SetOption37 options (all 119 of them) works.

The bulb works with either the default Ailight (27) config or using the template above but the colours are screwed up. Both the E27 and Bayonet version of this bulb use one MY9291 control chip that seems to be on GPIO 13 and 15.

@xbmcnut
Copy link
Author

xbmcnut commented Mar 4, 2020

IMG_20200304_191237

@xbmcnut
Copy link
Author

xbmcnut commented Mar 4, 2020

@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