You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the definition of a 6 or 8 button KPL is only via their cat and subcat:
6 button dimmer
“cat”: 1, “subcat”: 66 => (0x042) 6 button dimmer
“cat”: 1, “subcat”: 65 => (0x041) 8 button dimmer
+1 on solving this. I have a number of KPLs that are customized, and they show up wrong.
To read it, you'd send a Get Operating Flags command to the device: 0x1F 0x0. In the response, bit 3 will be set (1) for 8- and not set (0) for 6-button mode.
To write it, you'd send a Set Operating Flags command to the device: 0x20 0x06 (set device to 8-button mode) or 0x20 0x07 (set device to 6-button mode).
Currently, the definition of a 6 or 8 button KPL is only via their cat and subcat:
6 button dimmer
“cat”: 1, “subcat”: 66 => (0x042) 6 button dimmer
“cat”: 1, “subcat”: 65 => (0x041) 8 button dimmer
6 button On/Off
“cat”: 2, “subcat”: 44 => (0x2c) 6 button on/off
8 button dimmer
cat": 1, “subcat”: 66 = (0x42) 6 button dimmer
There must be a way to identify the actual configuration since the ISY is able to do this.
The text was updated successfully, but these errors were encountered: