mirror of https://github.com/home-assistant/core
81 lines
2.5 KiB
Python
81 lines
2.5 KiB
Python
"""Support for Litter-Robot switches."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Callable, Coroutine
|
|
from dataclasses import dataclass
|
|
from typing import Any, Generic
|
|
|
|
from pylitterbot import FeederRobot, LitterRobot
|
|
|
|
from homeassistant.components.switch import SwitchEntity, SwitchEntityDescription
|
|
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
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class RequiredKeysMixin(Generic[_RobotT]):
|
|
"""A class that describes robot switch entity required keys."""
|
|
|
|
set_fn: Callable[[_RobotT, bool], Coroutine[Any, Any, bool]]
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class RobotSwitchEntityDescription(SwitchEntityDescription, RequiredKeysMixin[_RobotT]):
|
|
"""A class that describes robot switch entities."""
|
|
|
|
entity_category: EntityCategory = EntityCategory.CONFIG
|
|
|
|
|
|
ROBOT_SWITCHES = [
|
|
RobotSwitchEntityDescription[LitterRobot | FeederRobot](
|
|
key="night_light_mode_enabled",
|
|
translation_key="night_light_mode",
|
|
set_fn=lambda robot, value: robot.set_night_light(value),
|
|
),
|
|
RobotSwitchEntityDescription[LitterRobot | FeederRobot](
|
|
key="panel_lock_enabled",
|
|
translation_key="panel_lockout",
|
|
set_fn=lambda robot, value: robot.set_panel_lockout(value),
|
|
),
|
|
]
|
|
|
|
|
|
class RobotSwitchEntity(LitterRobotEntity[_RobotT], SwitchEntity):
|
|
"""Litter-Robot switch entity."""
|
|
|
|
entity_description: RobotSwitchEntityDescription[_RobotT]
|
|
|
|
@property
|
|
def is_on(self) -> bool | None:
|
|
"""Return true if switch is on."""
|
|
return bool(getattr(self.robot, self.entity_description.key))
|
|
|
|
async def async_turn_on(self, **kwargs: Any) -> None:
|
|
"""Turn the switch on."""
|
|
await self.entity_description.set_fn(self.robot, True)
|
|
|
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
|
"""Turn the switch off."""
|
|
await self.entity_description.set_fn(self.robot, False)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: LitterRobotConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up Litter-Robot switches using config entry."""
|
|
hub = entry.runtime_data
|
|
entities = [
|
|
RobotSwitchEntity(robot=robot, hub=hub, description=description)
|
|
for description in ROBOT_SWITCHES
|
|
for robot in hub.account.robots
|
|
if isinstance(robot, (LitterRobot, FeederRobot))
|
|
]
|
|
async_add_entities(entities)
|