52 lines
1.6 KiB
Python
52 lines
1.6 KiB
Python
"""BleBox switch implementation."""
|
|
from datetime import timedelta
|
|
from typing import Any
|
|
|
|
from blebox_uniapi.box import Box
|
|
import blebox_uniapi.switch
|
|
|
|
from homeassistant.components.switch import SwitchDeviceClass, SwitchEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import BleBoxEntity
|
|
from .const import DOMAIN, PRODUCT
|
|
|
|
SCAN_INTERVAL = timedelta(seconds=5)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up a BleBox switch entity."""
|
|
product: Box = hass.data[DOMAIN][config_entry.entry_id][PRODUCT]
|
|
entities = [
|
|
BleBoxSwitchEntity(feature) for feature in product.features.get("switches", [])
|
|
]
|
|
async_add_entities(entities, True)
|
|
|
|
|
|
class BleBoxSwitchEntity(BleBoxEntity[blebox_uniapi.switch.Switch], SwitchEntity):
|
|
"""Representation of a BleBox switch feature."""
|
|
|
|
def __init__(self, feature: blebox_uniapi.switch.Switch) -> None:
|
|
"""Initialize a BleBox switch feature."""
|
|
super().__init__(feature)
|
|
self._attr_device_class = SwitchDeviceClass.SWITCH
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return whether switch is on."""
|
|
return self._feature.is_on
|
|
|
|
async def async_turn_on(self, **kwargs: Any) -> None:
|
|
"""Turn on the switch."""
|
|
await self._feature.async_turn_on()
|
|
|
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
|
"""Turn off the switch."""
|
|
await self._feature.async_turn_off()
|