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

Added jet mode functionality to API

Jet mode functionality seems to be known by different name at different models of AC
On my AC it is known as Himalayas mode

Please Add Ankush Dua to Contributors list
This commit is contained in:
ankushduacodes 2020-06-14 09:19:37 +05:30 committed by GitHub
parent 86ca064065
commit b8237186f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,13 +9,17 @@ 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)
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) after jet mode turns off
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"