-
Support for NICE Spa - IBT4ZWAVE - BusT4-Z-Wave interface has been added several months back. However I struggle to be able to control it properly. In Fibaro HC3, I was able to open/close the gate and stop it at any position. Here is the ZwaveJS DB device: https://devices.zwave-js.io/?jumpTo=0x0441:0x2400:0x1000:0.0 If I look at "Table 6 - Multilevel Switch Command Class SET" it does not look like there is any command that can be sent to stop the gate. Any advise would be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 8 comments 40 replies
-
You could contact the manufacturer and ask how to do it. If it's anything like normal window covers, you can use the Multilevel Switch Stop Level Change Command. All devices should support this command. There's a CC API method to do this, If you're using the Value API, such as in zwavejs2mqtt or HA, either of these If not |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Hi, From what I understand from the Zwave specification (page 100), value 254 is allowed as "Unknown position" for the Multilevel Switch CC. whereas ZwaveJS is not allowing it as the value is restricted between 0 and 99. Would it be possible to allow 254 value for the currentValue and targetValue in the Multilevel Switch CC ? This 254 value was allowed by OpenZwave and it was helpfull to know if the gate is opening, stopped or closing and not only opened (99) or closed (0). Thanks. |
Beta Was this translation helpful? Give feedback.
-
Yes 254 status value is very important because without it : |
Beta Was this translation helpful? Give feedback.
-
Bonjour, Il serait bien que le module IBT4 soit bien reconnu et les commandes créées automatiquement afin de recuperer l'etat en mouvement mais aussi l'etat des cellules par exemple |
Beta Was this translation helpful? Give feedback.
-
I am also waiting for an update please |
Beta Was this translation helpful? Give feedback.
-
hello same problem for me, pedestrian opening sliding gate not taken into account. |
Beta Was this translation helpful? Give feedback.
-
This is on my radar for v11. Locking this now since the "ping" spam is annoying. |
Beta Was this translation helpful? Give feedback.
You could contact the manufacturer and ask how to do it.
If it's anything like normal window covers, you can use the Multilevel Switch Stop Level Change Command. All devices should support this command. There's a CC API method to do this,
stopLevelChange
.If you're using the Value API, such as in zwavejs2mqtt or HA, either of these
Up
orDown
values will send the stop command when you use an "Off" (false
) value. If you don't have Up/Down, it could be something else likeClose/Open
.If not
stopLevelChange
, then sometimes you have to set the multilevel targetValue based on the direction. If it's opening, send close (0), and if it's closing, send open (99).