zwaveJS controller question/s
-
I would have to look at the device data for the iBlinds devices you have, but I believe that you can access any feature of any device via ZWaveJSController, it just may not be a declared action on a native Reactor capability (in the same way you can call any service in HassController, even if it's not a declared service on the Reactor entity). We just need to figure out what that mechanism is for the iBlinds devices, and either use it as offered, or decide to bring it forward as a simplified action.
Can you point me to online docs for iBlinds that describe how to start (via Z-Wave) the calibration process?
@toggledbits Here's the link to the community driver that surfaced this:
I'll need to dig/contact iblinds Support for any official docs they might have.
EDIT: don't know if this is helpful or not but here's how the blinds show up in MSR:
This caught my eye, hence the ask:
x_zwave_values.Configuration_Remote_Calibration=1
Again, don't know if any of this helps at all.
-
OK. So it's driven by setting a config value, and that's not usual. You would use
zwave_device.set_config
action on that entity. That's parameter 7, it's a 1-byte length value, the value would be 1 and the bitmask you can just leave at 0. -
OK. So it's driven by setting a config value, and that's not usual. You would use
zwave_device.set_config
action on that entity. That's parameter 7, it's a 1-byte length value, the value would be 1 and the bitmask you can just leave at 0.@toggledbits PERFECT! Works exactly as the Community driver did in Hubitat. This is huge for my setup, thank you.
-
-
-
T toggledbits locked this topic on