Skip to content

Commit

Permalink
Correct model number. (#21)
Browse files Browse the repository at this point in the history
I took a final glance at the packaging before putting them away. It says H35i,
not i35 on it.
  • Loading branch information
rainwoodman authored Dec 2, 2024
1 parent 1f06989 commit 0cd972c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/blueair_api/device_aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ async def set_wick_dry_mode(self, value: bool):
@property
def model(self) -> ModelEnum:
if self.sku == "111633":
return ModelEnum.HUMIDIFIER_I35
return ModelEnum.HUMIDIFIER_H35I
if self.sku == "105826":
return ModelEnum.PROTECT_7470I
if self.sku == "110092":
Expand Down
2 changes: 1 addition & 1 deletion src/blueair_api/model_enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

class ModelEnum(StrEnum):
UNKNOWN = "Unknown"
HUMIDIFIER_I35 = "Blueair Humidifier i35"
HUMIDIFIER_H35I = "Blueair Humidifier H35i"
PROTECT_7470I = "Blueair Protect 7470i"
MAX_311I = "311i Max"

0 comments on commit 0cd972c

Please sign in to comment.