New pyhOn version

This commit is contained in:
Andre Basche 2023-04-10 07:09:54 +02:00
parent e1a2af70e9
commit 7e9202ef38
9 changed files with 31 additions and 32 deletions

View file

@ -1,6 +1,6 @@
from __future__ import annotations
from pyhon import HonConnection
from pyhon import Hon
from pyhon.parameter import HonParameterRange
from homeassistant.components.number import (
@ -111,10 +111,10 @@ NUMBERS: dict[str, tuple[NumberEntityDescription, ...]] = {
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None:
hon: HonConnection = hass.data[DOMAIN][entry.unique_id]
hon: Hon = hass.data[DOMAIN][entry.unique_id]
coordinators = hass.data[DOMAIN]["coordinators"]
appliances = []
for device in hon.devices:
for device in hon.appliances:
if device.mac_address in coordinators:
coordinator = hass.data[DOMAIN]["coordinators"][device.mac_address]
else: