Allow EM Setpoint in Honeywell (#111332)

Add emheat setpoint
This commit is contained in:
mkmer 2024-02-25 08:40:08 -05:00 committed by GitHub
parent dad1184e18
commit 23cf418807
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -356,7 +356,7 @@ class HoneywellUSThermostat(ClimateEntity):
else:
if mode == "cool":
await self._device.set_setpoint_cool(temperature)
if mode == "heat":
if mode in ["heat", "emheat"]:
await self._device.set_setpoint_heat(temperature)
except UnexpectedResponse as err: