diff --git a/wideq/__init__.py b/wideq/__init__.py index c425b2e..5e6d480 100644 --- a/wideq/__init__.py +++ b/wideq/__init__.py @@ -4,4 +4,4 @@ from .core import * # noqa from .client import * # noqa from .ac import * # noqa -__version__ = '1.1.0' +__version__ = '1.1.1' diff --git a/wideq/ac.py b/wideq/ac.py index b88cde8..8ab96a3 100644 --- a/wideq/ac.py +++ b/wideq/ac.py @@ -294,6 +294,14 @@ class ACStatus(object): def fan_speed(self): return ACFanSpeed(self.lookup_enum('WindStrength')) + @property + def horz_swing(self): + return ACHSwingMode(self.lookup_enum('WDirHStep')) + + @property + def vert_swing(self): + return ACVSwingMode(self.lookup_enum('WDirVStep')) + @property def is_on(self): op = ACOp(self.lookup_enum('Operation'))