Skip to content

Commit

Permalink
fix firmware support for AC0850/85
Browse files Browse the repository at this point in the history
  • Loading branch information
kongo09 committed Nov 24, 2024
1 parent 67e2ce2 commit 8a786b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
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 @@ -114,6 +114,7 @@ class FanModel(StrEnum):
AC0850_20C = "AC0850/20 AWS_Philips_AIR_Combo"
AC0850_31 = "AC0850/31"
AC0850_81 = "AC0850/81"
AC0850_85 = "AC0850/85"
AC0950 = "AC0950"
AC0951 = "AC0951"
AC1214 = "AC1214"
Expand Down
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 @@ -592,6 +592,10 @@ class PhilipsAC085081(PhilipsAC085011C):
"""AC0850/81."""


class PhilipsAC085085(PhilipsAC085011):
"""AC0850/85."""


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

Expand Down Expand Up @@ -1955,6 +1959,7 @@ class PhilipsHU5710(PhilipsNew2GenericCoAPFan):
FanModel.AC0850_20C: PhilipsAC085020C,
FanModel.AC0850_31: PhilipsAC085031,
FanModel.AC0850_81: PhilipsAC085081,
FanModel.AC0850_85: PhilipsAC085085,
FanModel.AC0950: PhilipsAC0950,
FanModel.AC0951: PhilipsAC0951,
FanModel.AC1214: PhilipsAC1214,
Expand Down

0 comments on commit 8a786b4

Please sign in to comment.