I’ve written a Home Assistant script to set LEDs and LED effects on Inovelli dimmers, switches, and combo fan / light dimmers. It’s possible to set every Inovelli device in an area (i.e. ‘Upstairs’), or in a device (which is easy to template from an automation’s trigger.event.data.device_id
), or by entity. It’ll also accept any combination of area, device, and entity as well as any combination of Inovelli models. Different devices can be set simultaneously, so the script doesn’t need to be called multiple times by an automation—we’ll just set everything at once.
Notification effect examples:
service: script.inovelli_led_zwavejs
data:
area: 'Family Room' # This can also be an idea ID, if you're using a template.
duration: Forever
effect: CHASE
brightness: 8
color: Teal
service: script.inovelli_led_zwavejs
data:
entity: fan.front_porch
effect: pulse
brightness: 8
color: red
Clearing the above effects
service: script.inovelli_led_zwavejs
data:
area: 'Family Room'
entity: fan.front_porch
LED color example:
service: script.inovelli_led_zwavejs
data:
entity: light.office
LEDcolor: blue
LEDbrightness: 7
LEDbrightness_off: 3
LEDbrightness_off example: (maybe part of a nighttime routine?)
service: script.inovelli_led_zwavejs
data:
entity: light.office
LEDbrightness_off: 2