Skip to content

Commit

Permalink
Adds Pure i9 model (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohNan authored Aug 24, 2024
1 parent 9ac1f1c commit dad4512
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions custom_components/wellbeing/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class Model(str, Enum):
WELLA5 = "WELLA5"
WELLA7 = "WELLA7"
PUREA9 = "PUREA9"
A9 = "A9"
AX5 = "AX5"
AX7 = "AX7"
AX9 = "AX9"
Expand Down Expand Up @@ -310,6 +311,8 @@ def speed_range(self) -> tuple[int, int]:
return 1, 5
if self.model == Model.PUREA9:
return 1, 9
if self.model == Model.A9:
return 1, 9

## AEG Devices:
if self.model == Model.AX5:
Expand Down

0 comments on commit dad4512

Please sign in to comment.