New user to HA
I am trying to set some LED notifications on home assistant using Inovelli White Switches. I’ve searched other forums but can’t seem to find a topic on this. Apologies if there’s another thread already but I can’t find an answer.
I am trying to make a simple automation to set the LED color as a notification when the garage door is open for example. I’m currently just using a light to test the automation. The issue im having is that I don’t have a way to reset the switch to its “regular” behavior of showing the dimmer level with my default color (blue). I can set a green notification when the activation trigger is met, but when the deactivation trigger (simulating the garage door closing) takes place, the light remains green will the full LED bar lit until I close the light and turn it back on again.
I don’t know if I am doing this completely the wrong approach but I do not seem to be able to find the information or automation example for LED notifications for White switches on Home Assistant. Any advice is appreciated
Below is my code in YAML and also in
alias: Notification Testing
description: “”
triggers:
- type: turned_on
device_id: 7dc2ef706232253dae9402991e8fc602
entity_id: f87ab8cd4cc7bfbf4e1313a1fbc59dc7
domain: light
trigger: device
id: LightON - type: turned_off
device_id: 7dc2ef706232253dae9402991e8fc602
entity_id: f87ab8cd4cc7bfbf4e1313a1fbc59dc7
domain: light
trigger: device
id: LightOFF
conditions:
actions: - choose:
- conditions:
- condition: trigger
id:- LightON
sequence:
- LightON
- device_id: 74aa998f6fa4c95339e06e7383e0f36d
domain: select
entity_id: 634a22245108e42fccf551844f793206
type: select_option
option: Green - device_id: 74aa998f6fa4c95339e06e7383e0f36d
domain: number
entity_id: b03bb2ae1ea4cac4f82f6eedcb24fd04
type: set_value
value: 70
- condition: trigger
- conditions:
-
condition: trigger
id:- LightOFF
sequence:
- LightOFF
-
device_id: 74aa998f6fa4c95339e06e7383e0f36d
domain: select
entity_id: 634a22245108e42fccf551844f793206
type: select_option
option: Blue -
device_id: 74aa998f6fa4c95339e06e7383e0f36d
domain: number
entity_id: b03bb2ae1ea4cac4f82f6eedcb24fd04
type: set_value
value: 0
enabled: false
mode: single
-
- conditions:


