59 lines
1.5 KiB
Python
59 lines
1.5 KiB
Python
"""Component to embed LIFX."""
|
|
import voluptuous as vol
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.helpers import config_entry_flow
|
|
from homeassistant.components.light import DOMAIN as LIGHT_DOMAIN
|
|
|
|
|
|
DOMAIN = 'lifx'
|
|
REQUIREMENTS = ['aiolifx==0.6.5']
|
|
|
|
CONF_SERVER = 'server'
|
|
CONF_BROADCAST = 'broadcast'
|
|
|
|
INTERFACE_SCHEMA = vol.Schema({
|
|
vol.Optional(CONF_SERVER): cv.string,
|
|
vol.Optional(CONF_BROADCAST): cv.string,
|
|
})
|
|
|
|
CONFIG_SCHEMA = vol.Schema({
|
|
DOMAIN: {
|
|
LIGHT_DOMAIN:
|
|
vol.Schema(vol.All(cv.ensure_list, [INTERFACE_SCHEMA])),
|
|
}
|
|
}, extra=vol.ALLOW_EXTRA)
|
|
|
|
|
|
async def async_setup(hass, config):
|
|
"""Set up the LIFX component."""
|
|
conf = config.get(DOMAIN)
|
|
|
|
hass.data[DOMAIN] = conf or {}
|
|
|
|
if conf is not None:
|
|
hass.async_create_task(hass.config_entries.flow.async_init(
|
|
DOMAIN, context={'source': config_entries.SOURCE_IMPORT}))
|
|
|
|
return True
|
|
|
|
|
|
async def async_setup_entry(hass, entry):
|
|
"""Set up LIFX from a config entry."""
|
|
hass.async_create_task(hass.config_entries.async_forward_entry_setup(
|
|
entry, LIGHT_DOMAIN))
|
|
return True
|
|
|
|
|
|
async def _async_has_devices(hass):
|
|
"""Return if there are devices that can be discovered."""
|
|
import aiolifx
|
|
|
|
lifx_ip_addresses = await aiolifx.LifxScan(hass.loop).scan()
|
|
return len(lifx_ip_addresses) > 0
|
|
|
|
|
|
config_entry_flow.register_discovery_flow(
|
|
DOMAIN, 'LIFX', _async_has_devices, config_entries.CONN_CLASS_LOCAL_POLL)
|