kpine
kpine
Your controller is fine. You don't need a replacement unless you want new features like Long Range. The problem is the node was included without security, like I mentioned as...
> In the bad ones, I do not see this state. Not sure if this is a zwavejs bug, a firmware bug, or a display issue in home assistant It...
I think you are correct, I turned on a light switch remotely and here is the result:  Set/Get and Report are in the correct direction, in this case the...
I have finally upgraded to 9.33.0 from 9.26.0 and I am not seeing the min/max labels on the value for Wake Up Interval. It doesn't look like the referenced commit...
Ok, you can ignore the second case, I copied the wrong Debug Info from a similar device, 300 is the correct value. Sorry about that. I think there are still...
That's fine, textual indication was really all I was asking for, thanks!
Turn on [integration debugging](https://www.home-assistant.io/integrations/zwave_js/#how-do-i-access-the-z-wave-logs) and provide those logs.
The `value` in the action data is converted based on this [schema](https://github.com/home-assistant/core/blob/d9b077154e8592a33a7c01696999a6835ec473cc/homeassistant/components/zwave_js/config_validation.py#L35-L42): ```python VALUE_SCHEMA = vol.Any( boolean, vol.Coerce(int), vol.Coerce(float), BITMASK_SCHEMA, cv.string, dict, ) ``` The value is passed through the...
You can use `zwave_js.invoke_cc_api` as a workaround to the workaround: ```yaml action: zwave_js.invoke_cc_api data: command_class: "67" method_name: set entity_id: - climate.z_wave_thermostat parameters: - 1 # Heating setpoint - "{{ 19...
That's the intended behavior. See [driver option](https://zwave-js.github.io/node-zwave-js/#/api/driver?id=zwaveoptions) `disableOptimisticValueUpdate`. AFAIK there's no simple way to disable that, you have to use ZUI's [hidden settings](https://zwave-js.github.io/zwave-js-ui/#/usage/setup?id=z-wave).