mirror of
https://github.com/no2chem/wideq.git
synced 2025-05-16 07:10:09 -07:00
Updated JET mode names in ac.py
simplified JET mode names and fixed doc strings
This commit is contained in:
parent
34f5fd6033
commit
4d3d50a07c
20
wideq/ac.py
20
wideq/ac.py
@ -8,25 +8,21 @@ from .core import FailedRequestError
|
|||||||
|
|
||||||
|
|
||||||
class ACJetMode(enum.Enum):
|
class ACJetMode(enum.Enum):
|
||||||
"""To turn on the jet mode. This mode
|
"""JET mode puts your AC into highest cooling or dry or
|
||||||
puts your AC into highest cooling or
|
heat mode(for a certain amount of time) depending on what you choose
|
||||||
dry or heat mode(for a certain amount of time)
|
|
||||||
depending on what you choose
|
|
||||||
|
|
||||||
This mode Overrides following setting:
|
This mode Overrides following setting:
|
||||||
1. Vertical swing is set to @100
|
1. Vertical swing is set to @100
|
||||||
2. Temperature gets set to 18 after
|
2. Temperature gets set to 18 after jet mode turns off
|
||||||
jet mode turns off
|
3. Fan speed is set to HIGH (@AC_MAIN_WIND_STRENGTH_HIGH_W)
|
||||||
3. Fan speed is set to HIGH
|
|
||||||
(@AC_MAIN_WIND_STRENGTH_HIGH_W)
|
|
||||||
after jet mode turns off
|
after jet mode turns off
|
||||||
"""
|
"""
|
||||||
|
|
||||||
OFF = "@OFF"
|
OFF = "@OFF"
|
||||||
COOL_JET = "@COOL_JET"
|
COOL = "@COOL_JET"
|
||||||
HEAT_JET = "@HEAT_JET"
|
HEAT = "@HEAT_JET"
|
||||||
DRY_JET = "@DRY_JET_W"
|
DRY = "@DRY_JET_W"
|
||||||
HIM_COOL = "@HIMALAYAS_COOL"
|
HIMALAYAS = "@HIMALAYAS_COOL"
|
||||||
|
|
||||||
|
|
||||||
class ACVSwingMode(enum.Enum):
|
class ACVSwingMode(enum.Enum):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user