Skip to content

Commit

Permalink
tweak minimum and maximum values
Browse files Browse the repository at this point in the history
  • Loading branch information
scottyphillips committed Feb 25, 2022
1 parent 167af13 commit 4cb81c3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions custom_components/echonetlite/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -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},
}

0 comments on commit 4cb81c3

Please sign in to comment.