core/homeassistant/components/vera/switch.py

73 lines
2.1 KiB
Python
Raw Normal View History

"""Support for Vera switches."""
from typing import Any, Callable, List, Optional
import pyvera as veraApi
2016-02-19 05:27:50 +00:00
from homeassistant.components.switch import (
DOMAIN as PLATFORM_DOMAIN,
ENTITY_ID_FORMAT,
SwitchEntity,
)
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity import Entity
from homeassistant.util import convert
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: Callable[[List[Entity], bool], None],
) -> 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.get(PLATFORM_DOMAIN)
]
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
):
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 current_power_w(self) -> Optional[float]:
"""Return the current power usage in W."""
power = self.vera_device.power
if power:
return convert(power, float, 0.0)
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."""
2016-03-15 09:17:09 +00:00
self._state = self.vera_device.is_switched_on()