From 23ddff95b39f897b6e47712159a759a6038813a6 Mon Sep 17 00:00:00 2001 From: Edwin ten Haaf Date: Fri, 20 Dec 2024 08:41:16 +0100 Subject: [PATCH] fix for 'It's not possible to set regulation mode to Expert using Automations' (#718) Co-authored-by: Edwin ten Haaf --- custom_components/versatile_thermostat/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/versatile_thermostat/climate.py b/custom_components/versatile_thermostat/climate.py index 941bb8f..4fc586e 100644 --- a/custom_components/versatile_thermostat/climate.py +++ b/custom_components/versatile_thermostat/climate.py @@ -118,7 +118,7 @@ async def async_setup_entry( SERVICE_SET_AUTO_REGULATION_MODE, { vol.Required("auto_regulation_mode"): vol.In( - ["None", "Light", "Medium", "Strong", "Slow"] + ["None", "Light", "Medium", "Strong", "Slow", "Expert"] ), }, "service_set_auto_regulation_mode",