So I just setup ZWave.js. All was working well until I started to recreate my climate automations.
I am using an AEON Labs Z‐Stick Gen5 USB Controller and have a Radio Thermostat Company CT100.
Previously, I was using a Vera Edge for zwave.
My issue is when I change the climate.thermostat state to off, set temp and target temp high and low entities change to null. However, when I check in the zwave.js UI, those values are still set.
The current_temperature and current_humidity work regardless of state.
These null values break my automations. I am using template values for triggers.
an example:
{{ states.climate.thermostat.attributes.current_temperature > ( states.climate.thermostat.attributes.target_temp_high + 10 ) }}
When the state is off, the states.climate.thermostat.attributes.target_temp_high is now null. The reason I do this as I want the current_temperature to be dynamic as needed and not hardcoded in the scripts.
This used to work with Vera.
Is this a bug with the zwave.js integration
Thoughts? Ideas?