mirror of https://github.com/home-assistant/core
63 lines
1.8 KiB
Python
63 lines
1.8 KiB
Python
"""Support for Vera switches."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
import pyvera as veraApi
|
|
|
|
from homeassistant.components.switch import ENTITY_ID_FORMAT, SwitchEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .common import ControllerData, get_controller_data
|
|
from .entity import VeraEntity
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the sensor config entry."""
|
|
controller_data = get_controller_data(hass, entry)
|
|
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()
|