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

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: