103 lines
3.2 KiB
Python
103 lines
3.2 KiB
Python
|
"""Support for LaMetric switches."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
from collections.abc import Awaitable, Callable
|
||
|
from dataclasses import dataclass
|
||
|
from typing import Any
|
||
|
|
||
|
from demetriek import Device, LaMetricDevice
|
||
|
|
||
|
from homeassistant.components.switch import SwitchEntity, SwitchEntityDescription
|
||
|
from homeassistant.config_entries import ConfigEntry
|
||
|
from homeassistant.core import HomeAssistant
|
||
|
from homeassistant.helpers.entity import EntityCategory
|
||
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||
|
|
||
|
from .const import DOMAIN
|
||
|
from .coordinator import LaMetricDataUpdateCoordinator
|
||
|
from .entity import LaMetricEntity
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class LaMetricEntityDescriptionMixin:
|
||
|
"""Mixin values for LaMetric entities."""
|
||
|
|
||
|
is_on_fn: Callable[[Device], bool]
|
||
|
set_fn: Callable[[LaMetricDevice, bool], Awaitable[Any]]
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class LaMetricSwitchEntityDescription(
|
||
|
SwitchEntityDescription, LaMetricEntityDescriptionMixin
|
||
|
):
|
||
|
"""Class describing LaMetric switch entities."""
|
||
|
|
||
|
available_fn: Callable[[Device], bool] = lambda device: True
|
||
|
|
||
|
|
||
|
SWITCHES = [
|
||
|
LaMetricSwitchEntityDescription(
|
||
|
key="bluetooth",
|
||
|
name="Bluetooth",
|
||
|
icon="mdi:bluetooth",
|
||
|
entity_category=EntityCategory.CONFIG,
|
||
|
available_fn=lambda device: device.bluetooth.available,
|
||
|
is_on_fn=lambda device: device.bluetooth.active,
|
||
|
set_fn=lambda api, active: api.bluetooth(active=active),
|
||
|
),
|
||
|
]
|
||
|
|
||
|
|
||
|
async def async_setup_entry(
|
||
|
hass: HomeAssistant,
|
||
|
entry: ConfigEntry,
|
||
|
async_add_entities: AddEntitiesCallback,
|
||
|
) -> None:
|
||
|
"""Set up LaMetric switch based on a config entry."""
|
||
|
coordinator: LaMetricDataUpdateCoordinator = hass.data[DOMAIN][entry.entry_id]
|
||
|
async_add_entities(
|
||
|
LaMetricSwitchEntity(
|
||
|
coordinator=coordinator,
|
||
|
description=description,
|
||
|
)
|
||
|
for description in SWITCHES
|
||
|
)
|
||
|
|
||
|
|
||
|
class LaMetricSwitchEntity(LaMetricEntity, SwitchEntity):
|
||
|
"""Representation of a LaMetric switch."""
|
||
|
|
||
|
entity_description: LaMetricSwitchEntityDescription
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
coordinator: LaMetricDataUpdateCoordinator,
|
||
|
description: LaMetricSwitchEntityDescription,
|
||
|
) -> None:
|
||
|
"""Initiate LaMetric Switch."""
|
||
|
super().__init__(coordinator)
|
||
|
self.entity_description = description
|
||
|
self._attr_unique_id = f"{coordinator.data.serial_number}-{description.key}"
|
||
|
|
||
|
@property
|
||
|
def available(self) -> bool:
|
||
|
"""Return if entity is available."""
|
||
|
return super().available and self.entity_description.available_fn(
|
||
|
self.coordinator.data
|
||
|
)
|
||
|
|
||
|
@property
|
||
|
def is_on(self) -> bool:
|
||
|
"""Return state of the switch."""
|
||
|
return self.entity_description.is_on_fn(self.coordinator.data)
|
||
|
|
||
|
async def async_turn_on(self, **kwargs: Any) -> None:
|
||
|
"""Turn the entity on."""
|
||
|
await self.entity_description.set_fn(self.coordinator.lametric, True)
|
||
|
await self.coordinator.async_request_refresh()
|
||
|
|
||
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
||
|
"""Turn the entity off."""
|
||
|
await self.entity_description.set_fn(self.coordinator.lametric, False)
|
||
|
await self.coordinator.async_request_refresh()
|