mirror of
https://github.com/andvikt/mega_hacs.git
synced 2025-12-10 16:44:28 +05:00
84 lines
2.3 KiB
Python
84 lines
2.3 KiB
Python
"""Platform for light integration."""
|
|
import logging
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.light import (
|
|
PLATFORM_SCHEMA as LIGHT_SCHEMA,
|
|
SUPPORT_BRIGHTNESS,
|
|
LightEntity,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import (
|
|
CONF_NAME,
|
|
CONF_PORT,
|
|
CONF_UNIQUE_ID,
|
|
CONF_ID,
|
|
CONF_DOMAIN,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from .entities import MegaOutPort
|
|
|
|
from .hub import MegaD
|
|
from .const import (
|
|
CONF_DIMMER,
|
|
CONF_SWITCH,
|
|
DOMAIN,
|
|
CONF_CUSTOM,
|
|
CONF_SKIP,
|
|
)
|
|
from .tools import int_ignore
|
|
|
|
lg = logging.getLogger(__name__)
|
|
|
|
|
|
# Validation of the user's configuration
|
|
_EXTENDED = {
|
|
vol.Required(CONF_PORT): int,
|
|
vol.Optional(CONF_NAME): str,
|
|
vol.Optional(CONF_UNIQUE_ID): str,
|
|
}
|
|
_ITEM = vol.Any(int, _EXTENDED)
|
|
DIMMER = {vol.Required(CONF_DIMMER): [_ITEM]}
|
|
SWITCH = {vol.Required(CONF_SWITCH): [_ITEM]}
|
|
PLATFORM_SCHEMA = LIGHT_SCHEMA.extend(
|
|
{
|
|
vol.Optional(str, description="mega id"): {
|
|
vol.Optional("dimmer", default=[]): [_ITEM],
|
|
vol.Optional("switch", default=[]): [_ITEM],
|
|
}
|
|
},
|
|
extra=vol.ALLOW_EXTRA,
|
|
)
|
|
|
|
|
|
async def async_setup_platform(hass, config, add_entities, discovery_info=None):
|
|
lg.warning('mega integration does not support yaml for lights, please use UI configuration')
|
|
return True
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, async_add_devices):
|
|
mid = config_entry.data[CONF_ID]
|
|
hub: MegaD = hass.data['mega'][mid]
|
|
devices = []
|
|
customize = hass.data.get(DOMAIN, {}).get(CONF_CUSTOM, {})
|
|
for port, cfg in config_entry.data.get('light', {}).items():
|
|
port = int_ignore(port)
|
|
c = customize.get(mid, {}).get(port, {})
|
|
if c.get(CONF_SKIP, False) or c.get(CONF_DOMAIN, 'light') != 'light':
|
|
continue
|
|
for data in cfg:
|
|
hub.lg.debug(f'add light on port %s with data %s', port, data)
|
|
light = MegaLight(mega=hub, port=port, config_entry=config_entry, **data)
|
|
if '<' in light.name:
|
|
continue
|
|
devices.append(light)
|
|
async_add_devices(devices)
|
|
|
|
|
|
class MegaLight(MegaOutPort, LightEntity):
|
|
|
|
@property
|
|
def supported_features(self):
|
|
return SUPPORT_BRIGHTNESS if self.dimmer else 0
|
|
|