Skip to content

Commit

Permalink
Merge branch 'master' into 198-represent-humidifiers-by-humidifier-en…
Browse files Browse the repository at this point in the history
…tity-instead-of-fan-entity
  • Loading branch information
kongo09 committed Nov 24, 2024
2 parents 4759563 + 4c64159 commit 09ad1d9
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 @@ -582,7 +582,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 09ad1d9

Please sign in to comment.