core/homeassistant/components/vera/switch.py

66 lines
1.9 KiB
Python
Raw Normal View History

"""Support for Vera switches."""
2021-03-18 13:43:52 +00:00
from __future__ import annotations
from typing import Any
import pyvera as veraApi
2016-02-19 05:27:50 +00:00
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 . import VeraDevice
from .common import ControllerData, get_controller_data
2015-09-09 03:11:25 +00:00
2015-03-08 14:58:11 +00:00
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(
2019-07-31 19:25:30 +00:00
[
VeraSwitch(device, controller_data)
for device in controller_data.devices[Platform.SWITCH]
],
True,
2019-07-31 19:25:30 +00:00
)
2015-03-02 10:09:00 +00:00
2015-03-08 14:58:11 +00:00
class VeraSwitch(VeraDevice[veraApi.VeraSwitch], SwitchEntity):
2016-03-08 12:35:39 +00:00
"""Representation of a Vera Switch."""
2015-03-02 10:09:00 +00:00
def __init__(
self, vera_device: veraApi.VeraSwitch, controller_data: ControllerData
) -> None:
2016-03-08 12:35:39 +00:00
"""Initialize the Vera device."""
2016-03-15 09:17:09 +00:00
self._state = False
VeraDevice.__init__(self, vera_device, controller_data)
self.entity_id = ENTITY_ID_FORMAT.format(self.vera_id)
2015-03-02 10:09:00 +00:00
def turn_on(self, **kwargs: Any) -> None:
2016-03-08 12:35:39 +00:00
"""Turn device on."""
2015-03-02 10:09:00 +00:00
self.vera_device.switch_on()
self._state = True
self.schedule_update_ha_state()
2015-03-02 10:09:00 +00:00
def turn_off(self, **kwargs: Any) -> None:
2016-03-08 12:35:39 +00:00
"""Turn device off."""
2015-03-02 10:09:00 +00:00
self.vera_device.switch_off()
self._state = False
self.schedule_update_ha_state()
2015-03-02 10:09:00 +00:00
@property
def is_on(self) -> bool:
2016-03-08 12:35:39 +00:00
"""Return true if device is on."""
2016-03-15 09:17:09 +00:00
return self._state
def update(self) -> None:
"""Update device state."""
2021-02-08 14:25:54 +00:00
super().update()
2016-03-15 09:17:09 +00:00
self._state = self.vera_device.is_switched_on()