Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kongo09 committed Nov 16, 2024
2 parents a7ef7cf + ece9c4a commit 05ee753
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ Note: Some of these models seem to have a newer firmware that does not allow loc
- AC0850/20 AWS_Philips_AIR
- AC0850/20 AWS_Philips_AIR_Combo
- AC0850/31
- AC0850/81
- AC0950
- AC0951
- AC1214
Expand Down
1 change: 1 addition & 0 deletions custom_components/philips_airpurifier_coap/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ class FanModel(StrEnum):
AC0850_20 = "AC0850/20 AWS_Philips_AIR"
AC0850_20C = "AC0850/20 AWS_Philips_AIR_Combo"
AC0850_31 = "AC0850/31"
AC0850_81 = "AC0850/81"
AC0950 = "AC0950"
AC0951 = "AC0951"
AC1214 = "AC1214"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/philips_airpurifier_coap/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
"iot_class": "local_push",
"issue_tracker": "https://github.com/kongo09/philips-airpurifier-coap/issues",
"requirements": ["aioairctrl==0.2.5", "getmac==0.9.4"],
"version": "0.22.0"
"version": "0.23.0"
}
5 changes: 5 additions & 0 deletions custom_components/philips_airpurifier_coap/philips.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,10 @@ class PhilipsAC085031(PhilipsAC085011C):
"""AC0850/31."""


class PhilipsAC085081(PhilipsAC085011C):
"""AC0850/81."""


class PhilipsAC0950(PhilipsNew2GenericCoAPFan):
"""AC0950."""

Expand Down Expand Up @@ -1914,6 +1918,7 @@ class PhilipsCX3550(PhilipsNew2GenericCoAPFan):
FanModel.AC0850_20: PhilipsAC085020,
FanModel.AC0850_20C: PhilipsAC085020C,
FanModel.AC0850_31: PhilipsAC085031,
FanModel.AC0850_81: PhilipsAC085081,
FanModel.AC0950: PhilipsAC0950,
FanModel.AC0951: PhilipsAC0951,
FanModel.AC1214: PhilipsAC1214,
Expand Down

0 comments on commit 05ee753

Please sign in to comment.