2020-01-07 01:13:08 +00:00
|
|
|
"""Support for switching devices via Pilight to on and off."""
|
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
from homeassistant.components.light import (
|
|
|
|
ATTR_BRIGHTNESS,
|
|
|
|
PLATFORM_SCHEMA,
|
|
|
|
SUPPORT_BRIGHTNESS,
|
2020-04-26 16:49:41 +00:00
|
|
|
LightEntity,
|
2020-01-07 01:13:08 +00:00
|
|
|
)
|
|
|
|
from homeassistant.const import CONF_LIGHTS
|
|
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
|
|
|
|
from .base_class import SWITCHES_SCHEMA, PilightBaseDevice
|
|
|
|
from .const import CONF_DIMLEVEL_MAX, CONF_DIMLEVEL_MIN
|
|
|
|
|
|
|
|
LIGHTS_SCHEMA = SWITCHES_SCHEMA.extend(
|
|
|
|
{
|
|
|
|
vol.Optional(CONF_DIMLEVEL_MIN, default=0): cv.positive_int,
|
|
|
|
vol.Optional(CONF_DIMLEVEL_MAX, default=15): cv.positive_int,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
|
|
|
|
{vol.Required(CONF_LIGHTS): vol.Schema({cv.string: LIGHTS_SCHEMA})}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
|
|
"""Set up the Pilight platform."""
|
|
|
|
switches = config.get(CONF_LIGHTS)
|
|
|
|
devices = []
|
|
|
|
|
|
|
|
for dev_name, dev_config in switches.items():
|
|
|
|
devices.append(PilightLight(hass, dev_name, dev_config))
|
|
|
|
|
|
|
|
add_entities(devices)
|
|
|
|
|
|
|
|
|
2020-04-26 16:49:41 +00:00
|
|
|
class PilightLight(PilightBaseDevice, LightEntity):
|
2020-01-07 01:13:08 +00:00
|
|
|
"""Representation of a Pilight switch."""
|
|
|
|
|
|
|
|
def __init__(self, hass, name, config):
|
|
|
|
"""Initialize a switch."""
|
|
|
|
super().__init__(hass, name, config)
|
|
|
|
self._dimlevel_min = config.get(CONF_DIMLEVEL_MIN)
|
|
|
|
self._dimlevel_max = config.get(CONF_DIMLEVEL_MAX)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def brightness(self):
|
|
|
|
"""Return the brightness."""
|
|
|
|
return self._brightness
|
|
|
|
|
|
|
|
@property
|
|
|
|
def supported_features(self):
|
|
|
|
"""Flag supported features."""
|
|
|
|
return SUPPORT_BRIGHTNESS
|
|
|
|
|
|
|
|
def turn_on(self, **kwargs):
|
|
|
|
"""Turn the switch on by calling pilight.send service with on code."""
|
2020-09-17 20:48:52 +00:00
|
|
|
# Update brightness only if provided as an argument.
|
|
|
|
# This will allow the switch to keep its previous brightness level.
|
|
|
|
dimlevel = None
|
|
|
|
|
|
|
|
if ATTR_BRIGHTNESS in kwargs:
|
|
|
|
self._brightness = kwargs[ATTR_BRIGHTNESS]
|
|
|
|
|
|
|
|
# Calculate pilight brightness (as a range of 0 to 15)
|
|
|
|
# By creating a percentage
|
|
|
|
percentage = self._brightness / 255
|
|
|
|
# Then calculate the dimmer range (aka amount of available brightness steps).
|
|
|
|
dimrange = self._dimlevel_max - self._dimlevel_min
|
|
|
|
# Finally calculate the pilight brightness.
|
|
|
|
# We add dimlevel_min back in to ensure the minimum is always reached.
|
|
|
|
dimlevel = int(percentage * dimrange + self._dimlevel_min)
|
2020-01-07 01:13:08 +00:00
|
|
|
|
|
|
|
self.set_state(turn_on=True, dimlevel=dimlevel)
|