How to turn a dimmer on/off, and have it remember it's level #229
Replies: 4 comments 11 replies
-
Hi @fabnavigator, let BinarySwitchValueID = {
"commandClass": 37, /* Binary Switch */
"endpoint": 0,
"property": "targetValue",
}
let Message = {
"payload": {
"mode": "ValueAPI",
"node": 46,
"method": "setValue",
"params": [BinarySwitchValueID, true | false]
}
}
return Message |
Beta Was this translation helpful? Give feedback.
-
I have two similar switches: https://devices.zwave-js.io/?jumpTo=0x0063:0x4944:0x3130:0.0 https://devices.zwave-js.io/?jumpTo=0x0039:0x4944:0x3130:0.0 |
Beta Was this translation helpful? Give feedback.
-
Here is what the dimmer control looks like in Home Assistant. It works the way I need it to. You can set the brightness, but also have an on/off switch that doesn't adjust the set brightness level. |
Beta Was this translation helpful? Give feedback.
-
I cant comment on HA. And how are you turning it off in NR and back on? Then once being turned on in NR - just use the last captured Multi Level ON value. if the switch does not support Binary - that maybe how HA is doing it |
Beta Was this translation helpful? Give feedback.
-
I have a dimmer light switch that you can manually turn on/off with a quick tap up/down, or you can hold it up/down and it dims up/down. From node red I would like to set the level, and then turn it off, such that when someone taps it up it goes back to that set level. Is this possible?
Beta Was this translation helpful? Give feedback.
All reactions