This commit is contained in:
Miguel Ángel 2023-04-16 17:04:18 +02:00
commit 5dbf508519
7 changed files with 7 additions and 5 deletions

View File

@ -124,7 +124,7 @@ BINARY_SENSORS: dict[str, tuple[HonBinarySensorEntityDescription, ...]] = {
icon="mdi:power-cycle",
),
),
"IV": (
"IH": (
HonBinarySensorEntityDescription(
key="attributes.lastConnEvent.category",
name="Connection",

View File

@ -14,7 +14,7 @@ from .hon import HonCoordinator, HonEntity
_LOGGER = logging.getLogger(__name__)
BUTTONS: dict[str, tuple[ButtonEntityDescription, ...]] = {
"IV": (
"IH": (
ButtonEntityDescription(
key="startProgram",
name="Start Program",

View File

@ -8,4 +8,5 @@
"issue_tracker": "https://github.com/Andre0512/hon/issues",
"requirements": ["pyhOn"],
"version": "0.6.0-beta.3"
}

View File

@ -106,7 +106,7 @@ NUMBERS: dict[str, tuple[NumberEntityDescription, ...]] = {
native_unit_of_measurement=UnitOfTime.MINUTES,
),
),
"IV": (
"IH": (
NumberEntityDescription(
key="startProgram.temp",
name="Temperature",

View File

@ -71,7 +71,7 @@ SELECTS = {
translation_key="programs",
),
),
"IV": (
"IH": (
SelectEntityDescription(
key="startProgram.program",
name="Program",

View File

@ -221,7 +221,7 @@ SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = {
icon="mdi:thermometer",
),
),
"IV": (
"IH": (
SensorEntityDescription(
key="remainingTimeMM",
name="Remaining Time",

View File

@ -8,6 +8,7 @@ from homeassistant.config_entries import ConfigEntry
from homeassistant.const import EntityCategory
from pyhon import Hon
from pyhon.appliance import HonAppliance
from pyhon.parameter.range import HonParameterRange
from .const import DOMAIN
from .hon import HonCoordinator, HonEntity