Skip to content

Commit

Permalink
Merge pull request #208 from kongo09/179-philips-ac085031-no-longer-c…
Browse files Browse the repository at this point in the history
…ontrollable-after-update-to-v0190-1

179 philips ac085031 no longer controllable after update to v0190 1
  • Loading branch information
kongo09 authored Nov 24, 2024
2 parents bda8448 + 40d1bc8 commit 4c64159
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions custom_components/philips_airpurifier_coap/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,11 @@ async def async_step_dhcp(self, discovery_info: dhcp.DhcpServiceInfo) -> FlowRes
)[0]
self._device_id = status[PhilipsApi.DEVICE_ID]
_LOGGER.debug(
"Detected host %s as model %s with name: %s",
"Detected host %s as model %s with name: %s and firmware %s",
self._host,
self._model,
self._name,
self._wifi_version,
)
self._status = status

Expand Down Expand Up @@ -298,10 +299,11 @@ async def async_step_user(
config_entry_data[CONF_STATUS] = status

_LOGGER.debug(
"Detected host %s as model %s with name: %s",
"Detected host %s as model %s with name: %s and firmware: %s",
self._host,
self._model,
self._name,
self._wifi_version,
)

# check if model is supported
Expand Down
2 changes: 1 addition & 1 deletion custom_components/philips_airpurifier_coap/philips.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ class PhilipsAC085020C(PhilipsAC085011C):
"""AC0850/20 with firmware AWS_Philips_AIR_Combo."""


class PhilipsAC085031(PhilipsAC085011C):
class PhilipsAC085031(PhilipsAC085011):
"""AC0850/31."""


Expand Down

0 comments on commit 4c64159

Please sign in to comment.