72 lines
2.1 KiB
Python
72 lines
2.1 KiB
Python
"""
|
|
Support for Vera lights.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/light.vera/
|
|
"""
|
|
import logging
|
|
|
|
from homeassistant.components.light import (
|
|
ATTR_BRIGHTNESS, ENTITY_ID_FORMAT, Light, SUPPORT_BRIGHTNESS)
|
|
from homeassistant.components.vera import (
|
|
VERA_CONTROLLER, VERA_DEVICES, VeraDevice)
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
DEPENDENCIES = ['vera']
|
|
|
|
SUPPORT_VERA = SUPPORT_BRIGHTNESS
|
|
|
|
|
|
# pylint: disable=unused-argument
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
"""Setup Vera lights."""
|
|
add_devices(
|
|
VeraLight(device, VERA_CONTROLLER) for device in VERA_DEVICES['light'])
|
|
|
|
|
|
class VeraLight(VeraDevice, Light):
|
|
"""Representation of a Vera Light, including dimmable."""
|
|
|
|
def __init__(self, vera_device, controller):
|
|
"""Initialize the light."""
|
|
self._state = False
|
|
VeraDevice.__init__(self, vera_device, controller)
|
|
self.entity_id = ENTITY_ID_FORMAT.format(self.vera_id)
|
|
|
|
@property
|
|
def brightness(self):
|
|
"""Return the brightness of the light."""
|
|
if self.vera_device.is_dimmable:
|
|
return self.vera_device.get_brightness()
|
|
|
|
@property
|
|
def supported_features(self):
|
|
"""Flag supported features."""
|
|
return SUPPORT_VERA
|
|
|
|
def turn_on(self, **kwargs):
|
|
"""Turn the light on."""
|
|
if ATTR_BRIGHTNESS in kwargs and self.vera_device.is_dimmable:
|
|
self.vera_device.set_brightness(kwargs[ATTR_BRIGHTNESS])
|
|
else:
|
|
self.vera_device.switch_on()
|
|
|
|
self._state = True
|
|
self.schedule_update_ha_state(True)
|
|
|
|
def turn_off(self, **kwargs):
|
|
"""Turn the light off."""
|
|
self.vera_device.switch_off()
|
|
self._state = False
|
|
self.schedule_update_ha_state()
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if device is on."""
|
|
return self._state
|
|
|
|
def update(self):
|
|
"""Called by the vera device callback to update state."""
|
|
self._state = self.vera_device.is_switched_on()
|