OpenZWave / open-zwave

a C++ library to control Z-Wave Networks via a USB Z-Wave Controller.
http://www.openzwave.net/
GNU Lesser General Public License v3.0
1.05k stars 918 forks source link

Qubino ZMNHHDx dimmer Status flipping isuse and FIX #2577

Open Micha-123 opened 3 years ago

Micha-123 commented 3 years ago

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

`

true
<!-- 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.

ZMNHHDx.zip

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

nechry commented 3 years ago

can you write a PR for this?