35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
"""BleBox switch implementation."""
|
|
from homeassistant.components.switch import SwitchEntity
|
|
|
|
from . import BleBoxEntity, create_blebox_entities
|
|
from .const import BLEBOX_TO_HASS_DEVICE_CLASSES
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
"""Set up a BleBox switch entity."""
|
|
create_blebox_entities(
|
|
hass, config_entry, async_add_entities, BleBoxSwitchEntity, "switches"
|
|
)
|
|
|
|
|
|
class BleBoxSwitchEntity(BleBoxEntity, SwitchEntity):
|
|
"""Representation of a BleBox switch feature."""
|
|
|
|
def __init__(self, feature):
|
|
"""Initialize a BleBox switch feature."""
|
|
super().__init__(feature)
|
|
self._attr_device_class = BLEBOX_TO_HASS_DEVICE_CLASSES[feature.device_class]
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return whether switch is on."""
|
|
return self._feature.is_on
|
|
|
|
async def async_turn_on(self, **kwargs):
|
|
"""Turn on the switch."""
|
|
await self._feature.async_turn_on()
|
|
|
|
async def async_turn_off(self, **kwargs):
|
|
"""Turn off the switch."""
|
|
await self._feature.async_turn_off()
|