mirror of https://github.com/home-assistant/core
82 lines
2.5 KiB
Python
82 lines
2.5 KiB
Python
"""Support for Litter-Robot button."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Callable, Coroutine
|
|
from dataclasses import dataclass
|
|
import itertools
|
|
from typing import Any, Generic
|
|
|
|
from pylitterbot import FeederRobot, LitterRobot3
|
|
|
|
from homeassistant.components.button import ButtonEntity, ButtonEntityDescription
|
|
from homeassistant.const import EntityCategory
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import LitterRobotConfigEntry
|
|
from .entity import LitterRobotEntity, _RobotT
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: LitterRobotConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up Litter-Robot cleaner using config entry."""
|
|
hub = entry.runtime_data
|
|
entities: list[LitterRobotButtonEntity] = list(
|
|
itertools.chain(
|
|
(
|
|
LitterRobotButtonEntity(
|
|
robot=robot, hub=hub, description=LITTER_ROBOT_BUTTON
|
|
)
|
|
for robot in hub.litter_robots()
|
|
if isinstance(robot, LitterRobot3)
|
|
),
|
|
(
|
|
LitterRobotButtonEntity(
|
|
robot=robot, hub=hub, description=FEEDER_ROBOT_BUTTON
|
|
)
|
|
for robot in hub.feeder_robots()
|
|
),
|
|
)
|
|
)
|
|
async_add_entities(entities)
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class RequiredKeysMixin(Generic[_RobotT]):
|
|
"""A class that describes robot button entity required keys."""
|
|
|
|
press_fn: Callable[[_RobotT], Coroutine[Any, Any, bool]]
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class RobotButtonEntityDescription(ButtonEntityDescription, RequiredKeysMixin[_RobotT]):
|
|
"""A class that describes robot button entities."""
|
|
|
|
|
|
LITTER_ROBOT_BUTTON = RobotButtonEntityDescription[LitterRobot3](
|
|
key="reset_waste_drawer",
|
|
translation_key="reset_waste_drawer",
|
|
entity_category=EntityCategory.CONFIG,
|
|
press_fn=lambda robot: robot.reset_waste_drawer(),
|
|
)
|
|
FEEDER_ROBOT_BUTTON = RobotButtonEntityDescription[FeederRobot](
|
|
key="give_snack",
|
|
translation_key="give_snack",
|
|
press_fn=lambda robot: robot.give_snack(),
|
|
)
|
|
|
|
|
|
class LitterRobotButtonEntity(LitterRobotEntity[_RobotT], ButtonEntity):
|
|
"""Litter-Robot button entity."""
|
|
|
|
entity_description: RobotButtonEntityDescription[_RobotT]
|
|
|
|
async def async_press(self) -> None:
|
|
"""Press the button."""
|
|
await self.entity_description.press_fn(self.robot)
|
|
self.coordinator.async_set_updated_data(True)
|