From 4cb81c3d31da3ccb829c9b4e5de8ea0c752fea1d Mon Sep 17 00:00:00 2001 From: scottyphillips Date: Fri, 25 Feb 2022 17:54:01 +1100 Subject: [PATCH] tweak minimum and maximum values --- custom_components/echonetlite/const.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/custom_components/echonetlite/const.py b/custom_components/echonetlite/const.py index 3c3e927..5fd6e9e 100644 --- a/custom_components/echonetlite/const.py +++ b/custom_components/echonetlite/const.py @@ -158,10 +158,10 @@ ENL_SWING_MODE: {'option': 'swing_mode', 'option_list': SWING_MODE_OPTIONS}, } -TEMP_OPTIONS = {"min_temp_heat": {"min":15, "max":20}, - "max_temp_heat": {"min":20, "max":30}, - "min_temp_cool": {"min":15, "max":20}, - "max_temp_cool": {"min":20, "max":30}, - "min_temp_auto": {"min":15, "max":20}, - "max_temp_auto": {"min":20, "max":30}, +TEMP_OPTIONS = {"min_temp_heat": {"min":15, "max":25}, + "max_temp_heat": {"min":18, "max":30}, + "min_temp_cool": {"min":15, "max":25}, + "max_temp_cool": {"min":18, "max":30}, + "min_temp_auto": {"min":15, "max":25}, + "max_temp_auto": {"min":18, "max":30}, }