Replies: 1 comment 4 replies
-
|
I'm trying to avoid supporting specific devices and instead just control Climate entities. That said I do have heating and cooling in some of my rooms and was planning on finding a way to support both from one schedule. I was thinking of creating a virtual thermostat in HA of some kind for this as they are physically two systems in my case. Does your thermostat present dual setpoints in a climate entity or do you need to control them as separate heating and cooling entities? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My thermostat is a Zen [Zen-01-W] (https://www.zigbee2mqtt.io/devices/Zen-01-W.html#zen-zen-01-w).
It is a range‑limited, dual‑setpoint thermostat. It requires minimum and maximum bounds for both heating and cooling, and it always exposes both setpoints at the same time, regardless of the active mode.
In MQTT it publishes attributes such as:
occupied_cooling_setpoint
occupied_heating_setpoint
Example payload:
"system_mode": "cool",
"occupied_cooling_setpoint": 23.88888888888889,
"occupied_heating_setpoint": 20
Even while cooling, the device continues to report the heating setpoint because the Zigbee HVAC Thermostat cluster requires both values to remain valid simultaneously.
From what I can tell Climate Scheduler currently assumes a single active setpoint, but thermostats like the Zen operate with paired heating/cooling setpoints and fixed allowable ranges.
Beta Was this translation helpful? Give feedback.
All reactions