Setting button LED color on Zen32
-
I am trying to use MSR to set a button color on the ZEN32 to indicate that the garage door is open. Watching the device in MSR Entities tab I see that this is the location where the value is changing for button 1 with I change the value in Home Assistant. x_zwave_values.Configuration_LED_Indicator_Color_Button_1=1 where 0 - 3 represent the 4 possible button colors.
I assume that I want to use this reaction to modify the LED color?
If so, which parts of "x_zwave_values.Configuration_LED_Indicator_Color_Button_1=1" correspond to the available fields.
I have tried a few combinations and they are not working. -
You are probably better off using
set_config
.For the ZEN32, the first thing you need to do is set the mode for the LED indicator on each button. Configuration parameters 1-5 do this, with parameter 1 setting the large button, and parameters 2-5 setting the small buttons. Setting these to the value 3 makes sure the LED is always on (2=always off, 1=on when relay/dimmer is on, 0=on when relay/dimmer is off; 0 is the factory default). The current values of these can be seen as
x_zwave_values.Configuration_LED_Indicator_Relay
and...Configuration_LED_Indicator_Button_1
through4
.Once you've done that, then you can set configuration parameters 6-10 to the color for each (0=white, 1=blue, 2=green, 3=red), and parameters 11-15 set the LED brightness (0=high, 1=medium, 2=low).
To turn an LED off, you set parameters 1-5 to the value 2.
I will eventually provide other actions to make this easier, but those would need to be custom per device (as is this -- not getting away from it).
-
T toggledbits locked this topic on