mirror of
https://github.com/home-assistant/core.git
synced 2025-05-12 01:49:16 +00:00

* First draft of XKNX module for Home-Assistant * XKNX does now take path of xknx.yaml as parameter * small fix, telegram_received_callback has different signature * changed method of registering callbacks of devices * removed non async command lines from xknx * telegram_received_cb not needed within HASS module * updated requirements * Configuration if XKNX should connect via Routing or Tunneling * bumping version to 0.6.1 * small fix within xknx plugin * bumped version * XKNX-Switches are now BinarySensors and Logic from Sensor was moved to BinarySensor * renamed Outlet to Switch * pylint * configuration of KNX lights via HASS config, yay! * changed name of attribute * Added configuration for xknx to switch component * added support for sensors within hass configuration * added support for climate within hass configuration * Thermostat -> Climate * added configuration support for binary_sensors * renamed Shutter to Cover * added configuration support for cover * restructured file structure according to HASS requirements * pylint * pylint * pylint * pylint * pylint * pylint * updated version * pylint * pylint * pylint * added setpoint support for climate devices * devices are now in a different module * more asyncio :-) * pydocstyle * pydocstyle * added actions to binary_sensor * allow more than one automation * readded requirement * Modifications suggested by hound * Modifications suggested by hound * Modifications suggested by hound * Modifications suggested by hound * xknx now imported as local import * hound *sigh* * lint * 'fixed' coverage. * next try for getting gen_requirements_all.py working * removed blank line * XKNX 0.7.1 with logging functionality, replaced some print() calls with _LOGGER * updated requirements_all.txt * Fixes issue https://github.com/XKNX/xknx/issues/51 * https://github.com/XKNX/xknx/issues/52 added raw access to KNX bus from HASS component. * bumped version - 0.7.3 contains some bugfixes * bumped version - 0.7.3 contains some bugfixes * setting setpoint within climate device has to be async * bumped version to 0.7.4 * bumped version * https://github.com/XKNX/xknx/issues/48 Adding HVAC support. * pylint suggestions * Made target temperature and set point required attributes * renamed value_type to type within sensor configuration * Issue https://github.com/XKNX/xknx/issues/52 : added filter functionality for not flooding the event bus. * suggestions by pylint * Added notify support for knx platform. * logging error if discovery_info is None. * review suggestions by @armills * line too long * Using discovery_info to notifiy component which devices should be added. * moved XKNX automation to main level. * renamed xknx component to knx. * reverted change within .coveragerc * changed dependency * updated docstrings. * updated version of xknx within requirements_all.txt * moved requirement to correct position * renamed configuration attribute * added @callback-decorator and async_prefix. * added @callback decorator and async_ prefix to register_callbacks functions * fixed typo * pylint suggestions * added angle position and invert_position and invert_angle to cover.knx * typo * bumped version within requirements_all.txt * bumped version * Added support for HVAC controller status
167 lines
4.9 KiB
Python
167 lines
4.9 KiB
Python
"""
|
|
Support for KNX/IP lights.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/light.knx/
|
|
"""
|
|
import asyncio
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.knx import DATA_KNX, ATTR_DISCOVER_DEVICES
|
|
from homeassistant.components.light import PLATFORM_SCHEMA, Light, \
|
|
SUPPORT_BRIGHTNESS, ATTR_BRIGHTNESS
|
|
from homeassistant.const import CONF_NAME
|
|
from homeassistant.core import callback
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
CONF_ADDRESS = 'address'
|
|
CONF_STATE_ADDRESS = 'state_address'
|
|
CONF_BRIGHTNESS_ADDRESS = 'brightness_address'
|
|
CONF_BRIGHTNESS_STATE_ADDRESS = 'brightness_state_address'
|
|
|
|
DEFAULT_NAME = 'KNX Light'
|
|
DEPENDENCIES = ['knx']
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Required(CONF_ADDRESS): cv.string,
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
vol.Optional(CONF_STATE_ADDRESS): cv.string,
|
|
vol.Optional(CONF_BRIGHTNESS_ADDRESS): cv.string,
|
|
vol.Optional(CONF_BRIGHTNESS_STATE_ADDRESS): cv.string,
|
|
})
|
|
|
|
|
|
@asyncio.coroutine
|
|
def async_setup_platform(hass, config, add_devices,
|
|
discovery_info=None):
|
|
"""Set up light(s) for KNX platform."""
|
|
if DATA_KNX not in hass.data \
|
|
or not hass.data[DATA_KNX].initialized:
|
|
return False
|
|
|
|
if discovery_info is not None:
|
|
async_add_devices_discovery(hass, discovery_info, add_devices)
|
|
else:
|
|
async_add_devices_config(hass, config, add_devices)
|
|
|
|
return True
|
|
|
|
|
|
@callback
|
|
def async_add_devices_discovery(hass, discovery_info, add_devices):
|
|
"""Set up lights for KNX platform configured via xknx.yaml."""
|
|
entities = []
|
|
for device_name in discovery_info[ATTR_DISCOVER_DEVICES]:
|
|
device = hass.data[DATA_KNX].xknx.devices[device_name]
|
|
entities.append(KNXLight(hass, device))
|
|
add_devices(entities)
|
|
|
|
|
|
@callback
|
|
def async_add_devices_config(hass, config, add_devices):
|
|
"""Set up light for KNX platform configured within plattform."""
|
|
import xknx
|
|
light = xknx.devices.Light(
|
|
hass.data[DATA_KNX].xknx,
|
|
name=config.get(CONF_NAME),
|
|
group_address_switch=config.get(CONF_ADDRESS),
|
|
group_address_switch_state=config.get(CONF_STATE_ADDRESS),
|
|
group_address_brightness=config.get(CONF_BRIGHTNESS_ADDRESS),
|
|
group_address_brightness_state=config.get(
|
|
CONF_BRIGHTNESS_STATE_ADDRESS))
|
|
hass.data[DATA_KNX].xknx.devices.add(light)
|
|
add_devices([KNXLight(hass, light)])
|
|
|
|
|
|
class KNXLight(Light):
|
|
"""Representation of a KNX light."""
|
|
|
|
def __init__(self, hass, device):
|
|
"""Initialization of KNXLight."""
|
|
self.device = device
|
|
self.hass = hass
|
|
self.async_register_callbacks()
|
|
|
|
@callback
|
|
def async_register_callbacks(self):
|
|
"""Register callbacks to update hass after device was changed."""
|
|
@asyncio.coroutine
|
|
def after_update_callback(device):
|
|
"""Callback after device was updated."""
|
|
# pylint: disable=unused-argument
|
|
yield from self.async_update_ha_state()
|
|
self.device.register_device_updated_cb(after_update_callback)
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the KNX device."""
|
|
return self.device.name
|
|
|
|
@property
|
|
def should_poll(self):
|
|
"""No polling needed within KNX."""
|
|
return False
|
|
|
|
@property
|
|
def brightness(self):
|
|
"""Return the brightness of this light between 0..255."""
|
|
return self.device.brightness \
|
|
if self.device.supports_dimming else \
|
|
None
|
|
|
|
@property
|
|
def xy_color(self):
|
|
"""Return the XY color value [float, float]."""
|
|
return None
|
|
|
|
@property
|
|
def rgb_color(self):
|
|
"""Return the RBG color value."""
|
|
return None
|
|
|
|
@property
|
|
def color_temp(self):
|
|
"""Return the CT color temperature."""
|
|
return None
|
|
|
|
@property
|
|
def white_value(self):
|
|
"""Return the white value of this light between 0..255."""
|
|
return None
|
|
|
|
@property
|
|
def effect_list(self):
|
|
"""Return the list of supported effects."""
|
|
return None
|
|
|
|
@property
|
|
def effect(self):
|
|
"""Return the current effect."""
|
|
return None
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if light is on."""
|
|
return self.device.state
|
|
|
|
@property
|
|
def supported_features(self):
|
|
"""Flag supported features."""
|
|
flags = 0
|
|
if self.device.supports_dimming:
|
|
flags |= SUPPORT_BRIGHTNESS
|
|
return flags
|
|
|
|
@asyncio.coroutine
|
|
def async_turn_on(self, **kwargs):
|
|
"""Turn the light on."""
|
|
if ATTR_BRIGHTNESS in kwargs and self.device.supports_dimming:
|
|
yield from self.device.set_brightness(int(kwargs[ATTR_BRIGHTNESS]))
|
|
else:
|
|
yield from self.device.set_on()
|
|
|
|
@asyncio.coroutine
|
|
def async_turn_off(self, **kwargs):
|
|
"""Turn the light off."""
|
|
yield from self.device.set_off()
|