mirror of https://github.com/home-assistant/core
86 lines
2.8 KiB
Python
86 lines
2.8 KiB
Python
"""Define switch func."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Awaitable, Callable
|
|
from dataclasses import dataclass
|
|
from typing import Any
|
|
|
|
from homeassistant.components.switch import SwitchEntity, SwitchEntityDescription
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import IntellifireDataUpdateCoordinator
|
|
from .const import DOMAIN
|
|
from .entity import IntellifireEntity
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class IntellifireSwitchRequiredKeysMixin:
|
|
"""Mixin for required keys."""
|
|
|
|
on_fn: Callable[[IntellifireDataUpdateCoordinator], Awaitable]
|
|
off_fn: Callable[[IntellifireDataUpdateCoordinator], Awaitable]
|
|
value_fn: Callable[[IntellifireDataUpdateCoordinator], bool]
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class IntellifireSwitchEntityDescription(
|
|
SwitchEntityDescription, IntellifireSwitchRequiredKeysMixin
|
|
):
|
|
"""Describes a switch entity."""
|
|
|
|
|
|
INTELLIFIRE_SWITCHES: tuple[IntellifireSwitchEntityDescription, ...] = (
|
|
IntellifireSwitchEntityDescription(
|
|
key="on_off",
|
|
translation_key="flame",
|
|
on_fn=lambda coordinator: coordinator.control_api.flame_on(),
|
|
off_fn=lambda coordinator: coordinator.control_api.flame_off(),
|
|
value_fn=lambda coordinator: coordinator.read_api.data.is_on,
|
|
),
|
|
IntellifireSwitchEntityDescription(
|
|
key="pilot",
|
|
translation_key="pilot_light",
|
|
on_fn=lambda coordinator: coordinator.control_api.pilot_on(),
|
|
off_fn=lambda coordinator: coordinator.control_api.pilot_off(),
|
|
value_fn=lambda coordinator: coordinator.read_api.data.pilot_on,
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Configure switch entities."""
|
|
coordinator: IntellifireDataUpdateCoordinator = hass.data[DOMAIN][entry.entry_id]
|
|
|
|
async_add_entities(
|
|
IntellifireSwitch(coordinator=coordinator, description=description)
|
|
for description in INTELLIFIRE_SWITCHES
|
|
)
|
|
|
|
|
|
class IntellifireSwitch(IntellifireEntity, SwitchEntity):
|
|
"""Define an Intellifire Switch."""
|
|
|
|
entity_description: IntellifireSwitchEntityDescription
|
|
|
|
async def async_turn_on(self, **kwargs: Any) -> None:
|
|
"""Turn on the switch."""
|
|
await self.entity_description.on_fn(self.coordinator)
|
|
await self.async_update_ha_state(force_refresh=True)
|
|
|
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
|
"""Turn off the switch."""
|
|
await self.entity_description.off_fn(self.coordinator)
|
|
await self.async_update_ha_state(force_refresh=True)
|
|
|
|
@property
|
|
def is_on(self) -> bool | None:
|
|
"""Return the on state."""
|
|
return self.entity_description.value_fn(self.coordinator)
|