mirror of https://github.com/home-assistant/core
81 lines
2.3 KiB
Python
81 lines
2.3 KiB
Python
"""OpenGarage button."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Callable
|
|
from dataclasses import dataclass
|
|
from typing import Any, cast
|
|
|
|
from opengarage import OpenGarage
|
|
|
|
from homeassistant.components.button import (
|
|
ButtonDeviceClass,
|
|
ButtonEntity,
|
|
ButtonEntityDescription,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import EntityCategory
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import OpenGarageDataUpdateCoordinator
|
|
from .entity import OpenGarageEntity
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class OpenGarageButtonEntityDescription(ButtonEntityDescription):
|
|
"""OpenGarage Browser button description."""
|
|
|
|
press_action: Callable[[OpenGarage], Any]
|
|
|
|
|
|
BUTTONS: tuple[OpenGarageButtonEntityDescription, ...] = (
|
|
OpenGarageButtonEntityDescription(
|
|
key="restart",
|
|
device_class=ButtonDeviceClass.RESTART,
|
|
entity_category=EntityCategory.CONFIG,
|
|
press_action=lambda opengarage: opengarage.reboot(),
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the OpenGarage button entities."""
|
|
coordinator: OpenGarageDataUpdateCoordinator = hass.data[DOMAIN][
|
|
config_entry.entry_id
|
|
]
|
|
|
|
async_add_entities(
|
|
OpenGarageButtonEntity(
|
|
coordinator, cast(str, config_entry.unique_id), description
|
|
)
|
|
for description in BUTTONS
|
|
)
|
|
|
|
|
|
class OpenGarageButtonEntity(OpenGarageEntity, ButtonEntity):
|
|
"""Representation of an OpenGarage button."""
|
|
|
|
entity_description: OpenGarageButtonEntityDescription
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: OpenGarageDataUpdateCoordinator,
|
|
device_id: str,
|
|
description: OpenGarageButtonEntityDescription,
|
|
) -> None:
|
|
"""Initialize the button."""
|
|
super().__init__(coordinator, device_id, description)
|
|
|
|
async def async_press(self) -> None:
|
|
"""Press the button."""
|
|
await self.entity_description.press_action(
|
|
self.coordinator.open_garage_connection
|
|
)
|
|
await self.coordinator.async_refresh()
|