JanHre

Results 2 comments of JanHre

Hi can you add or replace to const.py DEFAULT_FAN_MODE_LIST = "10,11,12,20,21,22,30,31,32,33,34,35,36,37,38" To utils.py if not fan_mode.isnumeric() or int(fan_mode) < 1 or int(fan_mode) > 100:

and climate.py async def async_set_fan_mode(self, fan_mode): fan_percent = int(re.sub("[^0-9]", "", fan_mode)) if fan_percent < 10: fan_percent = 10 if fan_percent > 100: fan_percent = 100 if fan_percent >= 10 and...