Add mysensors light platform
* Make light controllable independently with types V_LIGHT, V_DIMMER, V_RGB and V_RGBW. V_RGBW is not implemented in the frontend yet. * Add discovery for light platform. * Add optimistic mode config setting for switch and light to allow feedback state from actuator. * Move S_LIGHT, V_LIGHT, V_STATUS types from switch to light platform. * Change node update logging to debug from info level. * Fix some inaccurate comments.
This commit is contained in:
parent
df8afe51f4
commit
2cf061c768
5 changed files with 257 additions and 19 deletions
|
@ -11,7 +11,7 @@ import os
|
|||
import csv
|
||||
|
||||
from homeassistant.components import (
|
||||
group, discovery, wink, isy994, zwave, insteon_hub)
|
||||
group, discovery, wink, isy994, zwave, insteon_hub, mysensors)
|
||||
from homeassistant.config import load_yaml_config_file
|
||||
from homeassistant.const import (
|
||||
STATE_ON, SERVICE_TURN_ON, SERVICE_TURN_OFF, SERVICE_TOGGLE,
|
||||
|
@ -64,6 +64,7 @@ DISCOVERY_PLATFORMS = {
|
|||
isy994.DISCOVER_LIGHTS: 'isy994',
|
||||
discovery.SERVICE_HUE: 'hue',
|
||||
zwave.DISCOVER_LIGHTS: 'zwave',
|
||||
mysensors.DISCOVER_LIGHTS: 'mysensors',
|
||||
}
|
||||
|
||||
PROP_TO_ATTR = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue