2023-04-11 22:08:47 +02:00
|
|
|
import logging
|
|
|
|
|
2023-04-25 23:39:18 +02:00
|
|
|
import pkg_resources
|
2023-05-11 23:59:01 +02:00
|
|
|
from homeassistant.components import persistent_notification
|
2023-03-03 18:23:30 +01:00
|
|
|
from homeassistant.components.button import ButtonEntityDescription, ButtonEntity
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
2023-05-10 18:13:05 +02:00
|
|
|
from homeassistant.const import EntityCategory
|
2023-04-10 07:09:54 +02:00
|
|
|
from pyhon.appliance import HonAppliance
|
2023-03-03 18:23:30 +01:00
|
|
|
|
|
|
|
from .const import DOMAIN
|
2023-05-25 01:30:33 +02:00
|
|
|
from .hon import HonEntity
|
2023-03-03 18:23:30 +01:00
|
|
|
|
2023-04-11 22:08:47 +02:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2023-03-03 18:23:30 +01:00
|
|
|
BUTTONS: dict[str, tuple[ButtonEntityDescription, ...]] = {
|
2023-04-16 13:55:08 +02:00
|
|
|
"IH": (
|
2023-04-15 04:27:40 +02:00
|
|
|
ButtonEntityDescription(
|
|
|
|
key="startProgram",
|
|
|
|
name="Start Program",
|
|
|
|
icon="mdi:pot-steam",
|
2023-04-23 02:01:14 +02:00
|
|
|
translation_key="induction_hob",
|
2023-04-15 04:27:40 +02:00
|
|
|
),
|
|
|
|
),
|
2023-05-21 20:51:20 +02:00
|
|
|
"REF": (
|
|
|
|
ButtonEntityDescription(
|
|
|
|
key="startProgram",
|
|
|
|
name="Program Start",
|
|
|
|
icon="mdi:play",
|
|
|
|
translation_key="start_program",
|
|
|
|
),
|
|
|
|
ButtonEntityDescription(
|
|
|
|
key="stopProgram",
|
|
|
|
name="Program Stop",
|
|
|
|
icon="mdi:stop",
|
|
|
|
translation_key="stop_program",
|
|
|
|
),
|
|
|
|
),
|
2023-05-30 05:22:02 +02:00
|
|
|
"HO": (
|
|
|
|
ButtonEntityDescription(
|
|
|
|
key="startProgram",
|
|
|
|
name="Start Program",
|
|
|
|
icon="mdi:hvac",
|
|
|
|
translation_key="start_program",
|
|
|
|
),
|
|
|
|
ButtonEntityDescription(
|
|
|
|
key="stopProgram",
|
|
|
|
name="Stop Program",
|
|
|
|
icon="mdi:hvac-off",
|
|
|
|
translation_key="stop_program",
|
|
|
|
),
|
|
|
|
),
|
2023-03-03 18:23:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None:
|
2023-05-25 01:30:33 +02:00
|
|
|
entities = []
|
|
|
|
for device in hass.data[DOMAIN][entry.unique_id].appliances:
|
|
|
|
for description in BUTTONS.get(device.appliance_type, []):
|
|
|
|
if not device.commands.get(description.key):
|
|
|
|
continue
|
|
|
|
entity = HonButtonEntity(hass, entry, device, description)
|
|
|
|
await entity.coordinator.async_config_entry_first_refresh()
|
|
|
|
entities.append(entity)
|
|
|
|
entities.append(HonFeatureRequestButton(hass, entry, device))
|
|
|
|
await entities[-1].coordinator.async_config_entry_first_refresh()
|
|
|
|
async_add_entities(entities)
|
2023-03-03 18:23:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
class HonButtonEntity(HonEntity, ButtonEntity):
|
2023-05-28 00:30:08 +02:00
|
|
|
entity_description: ButtonEntityDescription
|
2023-03-03 18:23:30 +01:00
|
|
|
|
|
|
|
async def async_press(self) -> None:
|
|
|
|
await self._device.commands[self.entity_description.key].send()
|
2023-04-11 22:08:47 +02:00
|
|
|
|
2023-05-08 19:17:08 +02:00
|
|
|
@property
|
|
|
|
def available(self) -> bool:
|
|
|
|
"""Return True if entity is available."""
|
2023-05-13 22:09:41 +02:00
|
|
|
return (
|
|
|
|
super().available
|
2023-05-16 20:34:05 +02:00
|
|
|
and self._device.get("remoteCtrValid", "1") == "1"
|
2023-05-13 22:09:41 +02:00
|
|
|
and self._device.get("attributes.lastConnEvent.category") != "DISCONNECTED"
|
|
|
|
)
|
2023-05-08 19:17:08 +02:00
|
|
|
|
2023-04-11 22:08:47 +02:00
|
|
|
|
|
|
|
class HonFeatureRequestButton(HonEntity, ButtonEntity):
|
2023-05-25 01:30:33 +02:00
|
|
|
def __init__(self, hass, entry, device: HonAppliance) -> None:
|
|
|
|
super().__init__(hass, entry, device)
|
2023-04-11 22:08:47 +02:00
|
|
|
|
|
|
|
self._attr_unique_id = f"{super().unique_id}_log_device_info"
|
|
|
|
self._attr_icon = "mdi:information"
|
2023-05-11 23:59:01 +02:00
|
|
|
self._attr_name = "Show Device Info"
|
2023-04-11 22:08:47 +02:00
|
|
|
self._attr_entity_category = EntityCategory.DIAGNOSTIC
|
|
|
|
self._attr_entity_registry_enabled_default = False
|
|
|
|
|
|
|
|
async def async_press(self) -> None:
|
2023-04-25 23:39:18 +02:00
|
|
|
pyhon_version = pkg_resources.get_distribution("pyhon").version
|
2023-05-19 01:27:44 +02:00
|
|
|
info = f"{self._device.diagnose()}pyhOnVersion: {pyhon_version}"
|
2023-05-11 23:59:01 +02:00
|
|
|
title = f"{self._device.nick_name} Device Info"
|
2023-05-19 01:27:44 +02:00
|
|
|
persistent_notification.create(
|
|
|
|
self._hass, f"````\n```\n{info}\n```\n````", title
|
|
|
|
)
|
2023-05-11 23:59:01 +02:00
|
|
|
_LOGGER.info(info.replace(" ", "\u200B "))
|