mirror of https://github.com/home-assistant/core
196 lines
6.4 KiB
Python
196 lines
6.4 KiB
Python
"""Support for Homekit buttons.
|
|
|
|
These are mostly used where a HomeKit accessory exposes additional non-standard
|
|
characteristics that don't map to a Home Assistant feature.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Callable
|
|
from dataclasses import dataclass
|
|
import logging
|
|
|
|
from aiohomekit.model.characteristics import Characteristic, CharacteristicsTypes
|
|
|
|
from homeassistant.components.button import (
|
|
ButtonDeviceClass,
|
|
ButtonEntity,
|
|
ButtonEntityDescription,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import EntityCategory, Platform
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import ConfigType
|
|
|
|
from . import KNOWN_DEVICES
|
|
from .connection import HKDevice
|
|
from .entity import CharacteristicEntity
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class HomeKitButtonEntityDescription(ButtonEntityDescription):
|
|
"""Describes Homekit button."""
|
|
|
|
probe: Callable[[Characteristic], bool] | None = None
|
|
write_value: int | str | None = None
|
|
|
|
|
|
BUTTON_ENTITIES: dict[str, HomeKitButtonEntityDescription] = {
|
|
CharacteristicsTypes.VENDOR_HAA_SETUP: HomeKitButtonEntityDescription(
|
|
key=CharacteristicsTypes.VENDOR_HAA_SETUP,
|
|
name="Setup",
|
|
translation_key="setup",
|
|
entity_category=EntityCategory.CONFIG,
|
|
write_value="#HAA@trcmd", # codespell:ignore haa
|
|
),
|
|
CharacteristicsTypes.VENDOR_HAA_UPDATE: HomeKitButtonEntityDescription(
|
|
key=CharacteristicsTypes.VENDOR_HAA_UPDATE,
|
|
name="Update",
|
|
device_class=ButtonDeviceClass.UPDATE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
write_value="#HAA@trcmd", # codespell:ignore haa
|
|
),
|
|
CharacteristicsTypes.IDENTIFY: HomeKitButtonEntityDescription(
|
|
key=CharacteristicsTypes.IDENTIFY,
|
|
name="Identify",
|
|
device_class=ButtonDeviceClass.IDENTIFY,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
write_value=True,
|
|
),
|
|
}
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up Homekit buttons."""
|
|
hkid: str = config_entry.data["AccessoryPairingID"]
|
|
conn: HKDevice = hass.data[KNOWN_DEVICES][hkid]
|
|
|
|
@callback
|
|
def async_add_characteristic(char: Characteristic) -> bool:
|
|
entities: list[CharacteristicEntity] = []
|
|
info = {"aid": char.service.accessory.aid, "iid": char.service.iid}
|
|
|
|
if description := BUTTON_ENTITIES.get(char.type):
|
|
entities.append(HomeKitButton(conn, info, char, description))
|
|
elif entity_type := BUTTON_ENTITY_CLASSES.get(char.type):
|
|
entities.append(entity_type(conn, info, char))
|
|
elif char.type == CharacteristicsTypes.THREAD_CONTROL_POINT:
|
|
if not conn.is_unprovisioned_thread_device:
|
|
return False
|
|
entities.append(
|
|
HomeKitProvisionPreferredThreadCredentials(conn, info, char)
|
|
)
|
|
else:
|
|
return False
|
|
|
|
for entity in entities:
|
|
conn.async_migrate_unique_id(
|
|
entity.old_unique_id, entity.unique_id, Platform.BUTTON
|
|
)
|
|
|
|
async_add_entities(entities)
|
|
return True
|
|
|
|
conn.add_char_factory(async_add_characteristic)
|
|
|
|
|
|
class BaseHomeKitButton(CharacteristicEntity, ButtonEntity):
|
|
"""Base class for all HomeKit buttons."""
|
|
|
|
|
|
class HomeKitButton(BaseHomeKitButton):
|
|
"""Representation of a Button control on a homekit accessory."""
|
|
|
|
entity_description: HomeKitButtonEntityDescription
|
|
|
|
def __init__(
|
|
self,
|
|
conn: HKDevice,
|
|
info: ConfigType,
|
|
char: Characteristic,
|
|
description: HomeKitButtonEntityDescription,
|
|
) -> None:
|
|
"""Initialise a HomeKit button control."""
|
|
self.entity_description = description
|
|
super().__init__(conn, info, char)
|
|
|
|
def get_characteristic_types(self) -> list[str]:
|
|
"""Define the homekit characteristics the entity is tracking."""
|
|
return [self._char.type]
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
"""Return the name of the device if any."""
|
|
if name := self.accessory.name:
|
|
return f"{name} {self.entity_description.name}"
|
|
return f"{self.entity_description.name}"
|
|
|
|
async def async_press(self) -> None:
|
|
"""Press the button."""
|
|
key = self.entity_description.key
|
|
val = self.entity_description.write_value
|
|
await self.async_put_characteristics({key: val})
|
|
|
|
|
|
class HomeKitEcobeeClearHoldButton(BaseHomeKitButton):
|
|
"""Representation of a Button control for Ecobee clear hold request."""
|
|
|
|
def get_characteristic_types(self) -> list[str]:
|
|
"""Define the homekit characteristics the entity is tracking."""
|
|
return []
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
"""Return the name of the device if any."""
|
|
prefix = ""
|
|
if name := super().name:
|
|
prefix = name
|
|
return f"{prefix} Clear Hold"
|
|
|
|
async def async_press(self) -> None:
|
|
"""Press the button."""
|
|
key = self._char.type
|
|
|
|
# If we just send true, the request doesn't always get executed by ecobee.
|
|
# Sending false value then true value will ensure that the hold gets cleared
|
|
# and schedule resumed.
|
|
# Ecobee seems to cache the state and not update it correctly, which
|
|
# causes the request to be ignored if it thinks it has no effect.
|
|
|
|
for val in (False, True):
|
|
await self.async_put_characteristics({key: val})
|
|
|
|
|
|
class HomeKitProvisionPreferredThreadCredentials(BaseHomeKitButton):
|
|
"""A button users can press to migrate their HomeKit BLE device to Thread."""
|
|
|
|
_attr_entity_category = EntityCategory.CONFIG
|
|
|
|
def get_characteristic_types(self) -> list[str]:
|
|
"""Define the homekit characteristics the entity is tracking."""
|
|
return []
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
"""Return the name of the device if any."""
|
|
prefix = ""
|
|
if name := super().name:
|
|
prefix = name
|
|
return f"{prefix} Provision Preferred Thread Credentials"
|
|
|
|
async def async_press(self) -> None:
|
|
"""Press the button."""
|
|
await self._accessory.async_thread_provision()
|
|
|
|
|
|
BUTTON_ENTITY_CLASSES: dict[str, type] = {
|
|
CharacteristicsTypes.VENDOR_ECOBEE_CLEAR_HOLD: HomeKitEcobeeClearHoldButton,
|
|
}
|