1
0
mirror of https://github.com/no2chem/wideq.git synced 2025-05-16 15:20:09 -07:00

Updated JET mode names in ac.py

simplified JET mode names and fixed doc strings
This commit is contained in:
ankushduacodes 2020-06-15 08:30:39 +05:30 committed by GitHub
parent 34f5fd6033
commit 4d3d50a07c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,25 +8,21 @@ from .core import FailedRequestError
class ACJetMode(enum.Enum):
"""To turn on the jet mode. This mode
puts your AC into highest cooling or
dry or heat mode(for a certain amount of time)
depending on what you choose
"""JET mode puts your AC into highest cooling or dry or
heat mode(for a certain amount of time) depending on what you choose
This mode Overrides following setting:
1. Vertical swing is set to @100
2. Temperature gets set to 18 after
jet mode turns off
3. Fan speed is set to HIGH
(@AC_MAIN_WIND_STRENGTH_HIGH_W)
2. Temperature gets set to 18 after jet mode turns off
3. Fan speed is set to HIGH (@AC_MAIN_WIND_STRENGTH_HIGH_W)
after jet mode turns off
"""
OFF = "@OFF"
COOL_JET = "@COOL_JET"
HEAT_JET = "@HEAT_JET"
DRY_JET = "@DRY_JET_W"
HIM_COOL = "@HIMALAYAS_COOL"
COOL = "@COOL_JET"
HEAT = "@HEAT_JET"
DRY = "@DRY_JET_W"
HIMALAYAS = "@HIMALAYAS_COOL"
class ACVSwingMode(enum.Enum):