mirror of https://github.com/home-assistant/core
55 lines
1.7 KiB
Python
55 lines
1.7 KiB
Python
"""Button integration microBees."""
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.button import ButtonEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import MicroBeesUpdateCoordinator
|
|
from .entity import MicroBeesActuatorEntity
|
|
|
|
BUTTON_TRANSLATIONS = {51: "button_gate", 91: "button_panic"}
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
|
) -> None:
|
|
"""Set up the microBees button platform."""
|
|
coordinator: MicroBeesUpdateCoordinator = hass.data[DOMAIN][
|
|
entry.entry_id
|
|
].coordinator
|
|
async_add_entities(
|
|
MBButton(coordinator, bee_id, button.id)
|
|
for bee_id, bee in coordinator.data.bees.items()
|
|
if bee.productID in BUTTON_TRANSLATIONS
|
|
for button in bee.actuators
|
|
)
|
|
|
|
|
|
class MBButton(MicroBeesActuatorEntity, ButtonEntity):
|
|
"""Representation of a microBees button."""
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: MicroBeesUpdateCoordinator,
|
|
bee_id: int,
|
|
actuator_id: int,
|
|
) -> None:
|
|
"""Initialize the microBees button."""
|
|
super().__init__(coordinator, bee_id, actuator_id)
|
|
self._attr_translation_key = BUTTON_TRANSLATIONS.get(self.bee.productID)
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
"""Name of the switch."""
|
|
return self.actuator.name
|
|
|
|
async def async_press(self, **kwargs: Any) -> None:
|
|
"""Turn on the button."""
|
|
await self.coordinator.microbees.sendCommand(
|
|
self.actuator.id, self.actuator.configuration.actuator_timing * 1000
|
|
)
|