I updated to ZWJS and all seems to working well, except the latest Inovelli switches don’t update status (always show OFF). I excluded the device, factory reset it, included it again and that didn’t fix it. My older Red series lzw31-sn dimmers work fine. I changed the driver for the vzw31-sn to lzw31-sn and the status updates correctly. That’s not an ideal solution because the old device driver doesn’t support functionality available on the new switches. Is there a solution?
There was a change made to some of the commands used to change the state with Z-Wave JS. I wonder if this might be related, the old commands may still be in the LZW31-SN driver…
Something like:
Which may need to bu updated to:
def on() {
if (infoEnable) log.info "${device.label?device.label:device.name}: on()"
commands([
zwave.switchBinaryV1.switchBinarySet(switchValue: 0xFF)
])
}
def off() {
if (infoEnable) log.info "${device.label?device.label:device.name}: off()"
commands([
zwave.switchBinaryV1.switchBinarySet(switchValue: 0x00)
])
}
The goal is for drivers to work without modification, though the above one (if you can see it; it's in the beta categories) should work. There are additional Z-Wave JS changes coming in 2.4.2 (assuming that's not what you're on already) that should help with that, though no guarantees about this specific issue or when it will be released -- but it's worth trying when it's released (or if you join).
I'm on 2.4.1.177. Is there a way to get the driver or do I need to join the beta group?
Was this ever resolved for you?
No it wasn't. I reverted back to legacy zwave.
You should go to the Inovelli forum (community.inovelli.com) and post your issue there.
They may be better able to help.
...Rob
Yes, I posted there for assistance…nothing but crickets.
There was some discussion on the Inovelli forum--but over a month ago, Inovelli asked for logs and there's been nothing since.
Perhaps, someone else can chime in over there - @Smith perhaps you have some logs to share?