From a4e086f0d9a55fa6f174f336e71199700f827d10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mor=C3=A1n?= Date: Fri, 5 Sep 2025 09:43:54 -0400 Subject: [PATCH] Add manual mode to the map of Overkiz to HVAC modes (#151438) --- ...tic_electrical_heater_with_adjustable_temperature_setpoint.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py b/homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py index 041571f7b5f2..709d93bb2b43 100644 --- a/homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py +++ b/homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py @@ -52,6 +52,7 @@ OVERKIZ_TO_HVAC_MODE: dict[str, HVACMode] = { OverkizCommandParam.OFF: HVACMode.OFF, OverkizCommandParam.AUTO: HVACMode.AUTO, OverkizCommandParam.BASIC: HVACMode.HEAT, + OverkizCommandParam.MANUAL: HVACMode.HEAT, OverkizCommandParam.STANDBY: HVACMode.OFF, OverkizCommandParam.EXTERNAL: HVACMode.AUTO, OverkizCommandParam.INTERNAL: HVACMode.AUTO,