Skip to content

Commit

Permalink
Restore fan-speed auto setting (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlarrick authored Sep 3, 2023
1 parent 282ac1f commit f9f5177
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pykumo/py_kumo.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ def set_fan_speed(self, speed):
""" Change fan speed. Valid speeds: superQuiet, quiet, low, powerful,
superPowerful, sometimes auto
"""
if speed not in ALL_FAN_SPEEDS:
if speed not in ALL_FAN_SPEEDS + ['auto']:
_LOGGER.warning(
"Attempting to set invalid fan speed %s", speed)
return {}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pykumo",
version="0.3.6",
version="0.3.7",
author="Doug Larrick",
author_email="[email protected]",
description="Small library for interfacing with Mitsubishi KumoCloud enabled devices",
Expand Down

0 comments on commit f9f5177

Please sign in to comment.