From 23cf418807f66dc85de2d92c28c471da2e1037c2 Mon Sep 17 00:00:00 2001 From: mkmer Date: Sun, 25 Feb 2024 08:40:08 -0500 Subject: [PATCH] Allow EM Setpoint in Honeywell (#111332) Add emheat setpoint --- homeassistant/components/honeywell/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/honeywell/climate.py b/homeassistant/components/honeywell/climate.py index 61ccdd00e49..fb8537ce36b 100644 --- a/homeassistant/components/honeywell/climate.py +++ b/homeassistant/components/honeywell/climate.py @@ -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: