open-zwave
open-zwave copied to clipboard
Qubino ZMNHHDx dimmer Status flipping isuse and FIX
if you switch the dimmer on with domoticz the status flips off and after a some seconds the status get back on.
adding that lines into the ZMNHHDx.xml fix this issuse
<!--prevent Fliping status in Switch mode--> <CommandClass id="37"> <Compatibility> <NoRefreshAfterSet index="0">true</NoRefreshAfterSet> </Compatibility> </CommandClass> <!-- prevent Fliping status in Dimmer mode --> <CommandClass id="38"> <Compatibility> <NoRefreshAfterSet index="0">true</NoRefreshAfterSet> </Compatibility> </CommandClass>
here is an ZMNHHDx xml file that fix it.
command class id 37 is needed if the dimmer setting is in simple switch mode
and command class 38 is needed if dimmer setting is in dimmer mode
can you write a PR for this?