1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-30 12:14:20 +01:00
Files
2026-04-30 21:14:48 +02:00

60 lines
1.7 KiB
Python

"""Support for Vera switches."""
from typing import Any
import pyvera as veraApi
from homeassistant.components.switch import ENTITY_ID_FORMAT, SwitchEntity
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
from .common import ControllerData, VeraConfigEntry
from .entity import VeraEntity
async def async_setup_entry(
hass: HomeAssistant,
entry: VeraConfigEntry,
async_add_entities: AddConfigEntryEntitiesCallback,
) -> None:
"""Set up the sensor config entry."""
controller_data = entry.runtime_data
async_add_entities(
[
VeraSwitch(device, controller_data)
for device in controller_data.devices[Platform.SWITCH]
],
True,
)
class VeraSwitch(VeraEntity[veraApi.VeraSwitch], SwitchEntity):
"""Representation of a Vera Switch."""
_attr_is_on = False
def __init__(
self, vera_device: veraApi.VeraSwitch, controller_data: ControllerData
) -> None:
"""Initialize the Vera device."""
VeraEntity.__init__(self, vera_device, controller_data)
self.entity_id = ENTITY_ID_FORMAT.format(self.vera_id)
def turn_on(self, **kwargs: Any) -> None:
"""Turn device on."""
self.vera_device.switch_on()
self._attr_is_on = True
self.schedule_update_ha_state()
def turn_off(self, **kwargs: Any) -> None:
"""Turn device off."""
self.vera_device.switch_off()
self._attr_is_on = False
self.schedule_update_ha_state()
def update(self) -> None:
"""Update device state."""
super().update()
self._attr_is_on = self.vera_device.is_switched_on()