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.pull/1213/head
parent
df8afe51f4
commit
2cf061c768
|
@ -11,7 +11,7 @@ import os
|
||||||
import csv
|
import csv
|
||||||
|
|
||||||
from homeassistant.components import (
|
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.config import load_yaml_config_file
|
||||||
from homeassistant.const import (
|
from homeassistant.const import (
|
||||||
STATE_ON, SERVICE_TURN_ON, SERVICE_TURN_OFF, SERVICE_TOGGLE,
|
STATE_ON, SERVICE_TURN_ON, SERVICE_TURN_OFF, SERVICE_TOGGLE,
|
||||||
|
@ -64,6 +64,7 @@ DISCOVERY_PLATFORMS = {
|
||||||
isy994.DISCOVER_LIGHTS: 'isy994',
|
isy994.DISCOVER_LIGHTS: 'isy994',
|
||||||
discovery.SERVICE_HUE: 'hue',
|
discovery.SERVICE_HUE: 'hue',
|
||||||
zwave.DISCOVER_LIGHTS: 'zwave',
|
zwave.DISCOVER_LIGHTS: 'zwave',
|
||||||
|
mysensors.DISCOVER_LIGHTS: 'mysensors',
|
||||||
}
|
}
|
||||||
|
|
||||||
PROP_TO_ATTR = {
|
PROP_TO_ATTR = {
|
||||||
|
|
|
@ -0,0 +1,226 @@
|
||||||
|
"""
|
||||||
|
homeassistant.components.light.mysensors.
|
||||||
|
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
Support for MySensors lights.
|
||||||
|
|
||||||
|
For more details about this platform, please refer to the documentation at
|
||||||
|
https://home-assistant.io/components/light.mysensors.html
|
||||||
|
"""
|
||||||
|
import logging
|
||||||
|
|
||||||
|
from homeassistant.components.light import (
|
||||||
|
Light, ATTR_BRIGHTNESS, ATTR_RGB_COLOR)
|
||||||
|
|
||||||
|
from homeassistant.const import (
|
||||||
|
ATTR_BATTERY_LEVEL,
|
||||||
|
STATE_ON, STATE_OFF)
|
||||||
|
|
||||||
|
import homeassistant.components.mysensors as mysensors
|
||||||
|
|
||||||
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
ATTR_RGB_WHITE = 'rgb_white'
|
||||||
|
|
||||||
|
|
||||||
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
||||||
|
"""Setup the mysensors platform for sensors."""
|
||||||
|
# Only act if loaded via mysensors by discovery event.
|
||||||
|
# Otherwise gateway is not setup.
|
||||||
|
if discovery_info is None:
|
||||||
|
return
|
||||||
|
|
||||||
|
for gateway in mysensors.GATEWAYS.values():
|
||||||
|
# Define the S_TYPES and V_TYPES that the platform should handle as
|
||||||
|
# states. Map them in a dict of lists.
|
||||||
|
pres = gateway.const.Presentation
|
||||||
|
set_req = gateway.const.SetReq
|
||||||
|
map_sv_types = {
|
||||||
|
pres.S_LIGHT: [set_req.V_LIGHT],
|
||||||
|
pres.S_DIMMER: [set_req.V_DIMMER],
|
||||||
|
}
|
||||||
|
if float(gateway.version) >= 1.5:
|
||||||
|
# Add V_RGBW when rgb_white is implemented in the frontend
|
||||||
|
map_sv_types.update({
|
||||||
|
pres.S_RGB_LIGHT: [set_req.V_RGB],
|
||||||
|
})
|
||||||
|
map_sv_types[pres.S_LIGHT].append(set_req.V_STATUS)
|
||||||
|
map_sv_types[pres.S_DIMMER].append(set_req.V_PERCENTAGE)
|
||||||
|
|
||||||
|
devices = {}
|
||||||
|
gateway.platform_callbacks.append(mysensors.pf_callback_factory(
|
||||||
|
map_sv_types, devices, add_devices, MySensorsLight))
|
||||||
|
|
||||||
|
|
||||||
|
class MySensorsLight(Light):
|
||||||
|
"""Represent the value of a MySensors child node."""
|
||||||
|
|
||||||
|
# pylint: disable=too-many-arguments,too-many-instance-attributes
|
||||||
|
|
||||||
|
def __init__(self, gateway, node_id, child_id, name, value_type):
|
||||||
|
"""Setup instance attributes."""
|
||||||
|
self.gateway = gateway
|
||||||
|
self.node_id = node_id
|
||||||
|
self.child_id = child_id
|
||||||
|
self._name = name
|
||||||
|
self.value_type = value_type
|
||||||
|
self.battery_level = 0
|
||||||
|
self._values = {}
|
||||||
|
self._state = None
|
||||||
|
self._rgb = None
|
||||||
|
self._brightness = None
|
||||||
|
self._white = None
|
||||||
|
|
||||||
|
@property
|
||||||
|
def should_poll(self):
|
||||||
|
"""MySensor gateway pushes its state to HA."""
|
||||||
|
return False
|
||||||
|
|
||||||
|
@property
|
||||||
|
def name(self):
|
||||||
|
"""The name of this entity."""
|
||||||
|
return self._name
|
||||||
|
|
||||||
|
@property
|
||||||
|
def brightness(self):
|
||||||
|
"""Brightness of this light between 0..255."""
|
||||||
|
return self._brightness
|
||||||
|
|
||||||
|
@property
|
||||||
|
def rgb_color(self):
|
||||||
|
"""RGB color value [int, int, int]."""
|
||||||
|
return self._rgb
|
||||||
|
|
||||||
|
@property
|
||||||
|
def rgb_white(self): # not implemented in the frontend yet
|
||||||
|
"""White value in RGBW, value between 0..255."""
|
||||||
|
return self._white
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_state_attributes(self):
|
||||||
|
"""Return device specific state attributes."""
|
||||||
|
device_attr = {
|
||||||
|
mysensors.ATTR_PORT: self.gateway.port,
|
||||||
|
mysensors.ATTR_NODE_ID: self.node_id,
|
||||||
|
mysensors.ATTR_CHILD_ID: self.child_id,
|
||||||
|
ATTR_BATTERY_LEVEL: self.battery_level,
|
||||||
|
}
|
||||||
|
for value_type, value in self._values.items():
|
||||||
|
device_attr[self.gateway.const.SetReq(value_type).name] = value
|
||||||
|
return device_attr
|
||||||
|
|
||||||
|
@property
|
||||||
|
def is_on(self):
|
||||||
|
"""True if device is on."""
|
||||||
|
return self._state
|
||||||
|
|
||||||
|
def turn_on(self, **kwargs):
|
||||||
|
"""Turn the device on."""
|
||||||
|
set_req = self.gateway.const.SetReq
|
||||||
|
rgb = self._rgb
|
||||||
|
brightness = self._brightness
|
||||||
|
white = self._white
|
||||||
|
|
||||||
|
if set_req.V_LIGHT in self._values and not self._state:
|
||||||
|
self.gateway.set_child_value(
|
||||||
|
self.node_id, self.child_id, set_req.V_LIGHT, 1)
|
||||||
|
|
||||||
|
if ATTR_BRIGHTNESS in kwargs and set_req.V_DIMMER in self._values and \
|
||||||
|
kwargs[ATTR_BRIGHTNESS] != self._brightness:
|
||||||
|
brightness = kwargs[ATTR_BRIGHTNESS]
|
||||||
|
percent = round(100 * brightness / 255)
|
||||||
|
self.gateway.set_child_value(
|
||||||
|
self.node_id, self.child_id, set_req.V_DIMMER, percent)
|
||||||
|
|
||||||
|
if float(self.gateway.version) >= 1.5:
|
||||||
|
|
||||||
|
if ATTR_RGB_WHITE in kwargs and \
|
||||||
|
self.value_type in (set_req.V_RGB, set_req.V_RGBW) and \
|
||||||
|
kwargs[ATTR_RGB_WHITE] != self._white:
|
||||||
|
white = kwargs[ATTR_RGB_WHITE]
|
||||||
|
|
||||||
|
if ATTR_RGB_COLOR in kwargs and \
|
||||||
|
self.value_type in (set_req.V_RGB, set_req.V_RGBW) and \
|
||||||
|
kwargs[ATTR_RGB_COLOR] != self._rgb:
|
||||||
|
rgb = kwargs[ATTR_RGB_COLOR]
|
||||||
|
if set_req.V_RGBW == self.value_type:
|
||||||
|
hex_template = '%02x%02x%02x%02x'
|
||||||
|
color_list = rgb.append(white)
|
||||||
|
if set_req.V_RGB == self.value_type:
|
||||||
|
hex_template = '%02x%02x%02x'
|
||||||
|
color_list = rgb
|
||||||
|
hex_color = hex_template % tuple(color_list)
|
||||||
|
self.gateway.set_child_value(
|
||||||
|
self.node_id, self.child_id, self.value_type, hex_color)
|
||||||
|
|
||||||
|
if self.gateway.optimistic:
|
||||||
|
# optimistically assume that light has changed state
|
||||||
|
self._state = True
|
||||||
|
self._rgb = rgb
|
||||||
|
self._brightness = brightness
|
||||||
|
self._white = white
|
||||||
|
self.update_ha_state()
|
||||||
|
|
||||||
|
def turn_off(self, **kwargs):
|
||||||
|
"""Turn the device off."""
|
||||||
|
set_req = self.gateway.const.SetReq
|
||||||
|
v_type = set_req.V_LIGHT
|
||||||
|
value = 0
|
||||||
|
if set_req.V_LIGHT in self._values:
|
||||||
|
self._values[set_req.V_LIGHT] = STATE_OFF
|
||||||
|
elif set_req.V_DIMMER in self._values:
|
||||||
|
v_type = set_req.V_DIMMER
|
||||||
|
elif float(self.gateway.version) >= 1.5:
|
||||||
|
if set_req.V_RGB in self._values:
|
||||||
|
v_type = set_req.V_RGB
|
||||||
|
value = '000000'
|
||||||
|
elif set_req.V_RGBW in self._values:
|
||||||
|
v_type = set_req.V_RGBW
|
||||||
|
value = '00000000'
|
||||||
|
self.gateway.set_child_value(
|
||||||
|
self.node_id, self.child_id, v_type, value)
|
||||||
|
|
||||||
|
if self.gateway.optimistic:
|
||||||
|
# optimistically assume that light has changed state
|
||||||
|
self._state = False
|
||||||
|
self.update_ha_state()
|
||||||
|
|
||||||
|
@property
|
||||||
|
def available(self):
|
||||||
|
"""Return True if entity is available."""
|
||||||
|
return self.value_type in self._values
|
||||||
|
|
||||||
|
def update(self):
|
||||||
|
"""Update the controller with the latest value from a sensor."""
|
||||||
|
node = self.gateway.sensors[self.node_id]
|
||||||
|
child = node.children[self.child_id]
|
||||||
|
set_req = self.gateway.const.SetReq
|
||||||
|
self.battery_level = node.battery_level
|
||||||
|
for value_type, value in child.values.items():
|
||||||
|
_LOGGER.debug(
|
||||||
|
"%s: value_type %s, value = %s", self._name, value_type, value)
|
||||||
|
if value_type == set_req.V_LIGHT:
|
||||||
|
self._values[value_type] = (
|
||||||
|
STATE_ON if int(value) == 1 else STATE_OFF)
|
||||||
|
self._state = self._values[value_type] == STATE_ON
|
||||||
|
else:
|
||||||
|
self._values[value_type] = value
|
||||||
|
if value_type == set_req.V_DIMMER:
|
||||||
|
self._brightness = round(
|
||||||
|
255 * int(self._values[value_type]) / 100)
|
||||||
|
if self._brightness == 0:
|
||||||
|
self._state = False
|
||||||
|
if set_req.V_LIGHT not in self._values:
|
||||||
|
self._state = self._brightness > 0
|
||||||
|
if float(self.gateway.version) >= 1.5 and \
|
||||||
|
value_type in (set_req.V_RGB, set_req.V_RGBW):
|
||||||
|
# convert hex color string to rgb(w) integer list
|
||||||
|
color_list = [int(value[i:i + len(value) // 3], 16)
|
||||||
|
for i in range(0,
|
||||||
|
len(value),
|
||||||
|
len(value) // 3)]
|
||||||
|
if len(color_list) > 3:
|
||||||
|
self._white = color_list.pop()
|
||||||
|
self._rgb = color_list
|
||||||
|
if set_req.V_LIGHT not in self._values or \
|
||||||
|
set_req.V_DIMMER not in self._values:
|
||||||
|
self._state = max(color_list) > 0
|
|
@ -1,5 +1,6 @@
|
||||||
"""
|
"""
|
||||||
homeassistant.components.mysensors
|
homeassistant.components.mysensors.
|
||||||
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
MySensors component that connects to a MySensors gateway via pymysensors
|
MySensors component that connects to a MySensors gateway via pymysensors
|
||||||
API.
|
API.
|
||||||
|
@ -25,6 +26,7 @@ CONF_PERSISTENCE = 'persistence'
|
||||||
CONF_PERSISTENCE_FILE = 'persistence_file'
|
CONF_PERSISTENCE_FILE = 'persistence_file'
|
||||||
CONF_VERSION = 'version'
|
CONF_VERSION = 'version'
|
||||||
CONF_BAUD_RATE = 'baud_rate'
|
CONF_BAUD_RATE = 'baud_rate'
|
||||||
|
CONF_OPTIMISTIC = 'optimistic'
|
||||||
DEFAULT_VERSION = '1.4'
|
DEFAULT_VERSION = '1.4'
|
||||||
DEFAULT_BAUD_RATE = 115200
|
DEFAULT_BAUD_RATE = 115200
|
||||||
|
|
||||||
|
@ -40,13 +42,15 @@ ATTR_PORT = 'port'
|
||||||
|
|
||||||
GATEWAYS = None
|
GATEWAYS = None
|
||||||
|
|
||||||
DISCOVER_SENSORS = "mysensors.sensors"
|
DISCOVER_SENSORS = 'mysensors.sensors'
|
||||||
DISCOVER_SWITCHES = "mysensors.switches"
|
DISCOVER_SWITCHES = 'mysensors.switches'
|
||||||
|
DISCOVER_LIGHTS = 'mysensors.lights'
|
||||||
|
|
||||||
# Maps discovered services to their platforms
|
# Maps discovered services to their platforms
|
||||||
DISCOVERY_COMPONENTS = [
|
DISCOVERY_COMPONENTS = [
|
||||||
('sensor', DISCOVER_SENSORS),
|
('sensor', DISCOVER_SENSORS),
|
||||||
('switch', DISCOVER_SWITCHES),
|
('switch', DISCOVER_SWITCHES),
|
||||||
|
('light', DISCOVER_LIGHTS),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -76,7 +80,8 @@ def setup(hass, config):
|
||||||
baud=baud_rate)
|
baud=baud_rate)
|
||||||
gateway.metric = is_metric
|
gateway.metric = is_metric
|
||||||
gateway.debug = config[DOMAIN].get(CONF_DEBUG, False)
|
gateway.debug = config[DOMAIN].get(CONF_DEBUG, False)
|
||||||
gateway = GatewayWrapper(gateway, version)
|
optimistic = config[DOMAIN].get(CONF_OPTIMISTIC, False)
|
||||||
|
gateway = GatewayWrapper(gateway, version, optimistic)
|
||||||
# pylint: disable=attribute-defined-outside-init
|
# pylint: disable=attribute-defined-outside-init
|
||||||
gateway.event_callback = gateway.callback_factory()
|
gateway.event_callback = gateway.callback_factory()
|
||||||
|
|
||||||
|
@ -154,12 +159,13 @@ def pf_callback_factory(map_sv_types, devices, add_devices, entity_class):
|
||||||
class GatewayWrapper(object):
|
class GatewayWrapper(object):
|
||||||
"""Gateway wrapper class, by subclassing serial gateway."""
|
"""Gateway wrapper class, by subclassing serial gateway."""
|
||||||
|
|
||||||
def __init__(self, gateway, version):
|
def __init__(self, gateway, version, optimistic):
|
||||||
"""Setup class attributes on instantiation.
|
"""Setup class attributes on instantiation.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
gateway (mysensors.SerialGateway): Gateway to wrap.
|
gateway (mysensors.SerialGateway): Gateway to wrap.
|
||||||
version (str): Version of mysensors API.
|
version (str): Version of mysensors API.
|
||||||
|
optimistic (bool): Send values to actuators without feedback state.
|
||||||
|
|
||||||
Attributes:
|
Attributes:
|
||||||
_wrapped_gateway (mysensors.SerialGateway): Wrapped gateway.
|
_wrapped_gateway (mysensors.SerialGateway): Wrapped gateway.
|
||||||
|
@ -172,6 +178,7 @@ class GatewayWrapper(object):
|
||||||
self.version = version
|
self.version = version
|
||||||
self.platform_callbacks = []
|
self.platform_callbacks = []
|
||||||
self.const = self.get_const()
|
self.const = self.get_const()
|
||||||
|
self.optimistic = optimistic
|
||||||
self.__initialised = True
|
self.__initialised = True
|
||||||
|
|
||||||
def __getattr__(self, name):
|
def __getattr__(self, name):
|
||||||
|
@ -204,7 +211,7 @@ class GatewayWrapper(object):
|
||||||
"""Return a new callback function."""
|
"""Return a new callback function."""
|
||||||
def node_update(update_type, node_id):
|
def node_update(update_type, node_id):
|
||||||
"""Callback for node updates from the MySensors gateway."""
|
"""Callback for node updates from the MySensors gateway."""
|
||||||
_LOGGER.info('update %s: node %s', update_type, node_id)
|
_LOGGER.debug('update %s: node %s', update_type, node_id)
|
||||||
for callback in self.platform_callbacks:
|
for callback in self.platform_callbacks:
|
||||||
callback(self, node_id)
|
callback(self, node_id)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
"""
|
"""
|
||||||
homeassistant.components.sensor.mysensors
|
homeassistant.components.sensor.mysensors.
|
||||||
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
Support for MySensors sensors.
|
Support for MySensors sensors.
|
||||||
|
|
||||||
|
@ -30,7 +31,7 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
|
||||||
|
|
||||||
for gateway in mysensors.GATEWAYS.values():
|
for gateway in mysensors.GATEWAYS.values():
|
||||||
# Define the S_TYPES and V_TYPES that the platform should handle as
|
# Define the S_TYPES and V_TYPES that the platform should handle as
|
||||||
# states. Map them in a defaultdict(list).
|
# states. Map them in a dict of lists.
|
||||||
pres = gateway.const.Presentation
|
pres = gateway.const.Presentation
|
||||||
set_req = gateway.const.SetReq
|
set_req = gateway.const.SetReq
|
||||||
map_sv_types = {
|
map_sv_types = {
|
||||||
|
@ -190,7 +191,7 @@ class MySensorsSensor(Entity):
|
||||||
node = self.gateway.sensors[self.node_id]
|
node = self.gateway.sensors[self.node_id]
|
||||||
child = node.children[self.child_id]
|
child = node.children[self.child_id]
|
||||||
for value_type, value in child.values.items():
|
for value_type, value in child.values.items():
|
||||||
_LOGGER.info(
|
_LOGGER.debug(
|
||||||
"%s: value_type %s, value = %s", self._name, value_type, value)
|
"%s: value_type %s, value = %s", self._name, value_type, value)
|
||||||
if value_type == self.gateway.const.SetReq.V_TRIPPED:
|
if value_type == self.gateway.const.SetReq.V_TRIPPED:
|
||||||
self._values[value_type] = STATE_ON if int(
|
self._values[value_type] = STATE_ON if int(
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
"""
|
"""
|
||||||
homeassistant.components.switch.mysensors
|
homeassistant.components.switch.mysensors.
|
||||||
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
Support for MySensors switches.
|
Support for MySensors switches.
|
||||||
|
|
||||||
|
@ -29,14 +30,13 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
|
||||||
|
|
||||||
for gateway in mysensors.GATEWAYS.values():
|
for gateway in mysensors.GATEWAYS.values():
|
||||||
# Define the S_TYPES and V_TYPES that the platform should handle as
|
# Define the S_TYPES and V_TYPES that the platform should handle as
|
||||||
# states. Map them in a defaultdict(list).
|
# states. Map them in a dict of lists.
|
||||||
pres = gateway.const.Presentation
|
pres = gateway.const.Presentation
|
||||||
set_req = gateway.const.SetReq
|
set_req = gateway.const.SetReq
|
||||||
map_sv_types = {
|
map_sv_types = {
|
||||||
pres.S_DOOR: [set_req.V_ARMED],
|
pres.S_DOOR: [set_req.V_ARMED],
|
||||||
pres.S_MOTION: [set_req.V_ARMED],
|
pres.S_MOTION: [set_req.V_ARMED],
|
||||||
pres.S_SMOKE: [set_req.V_ARMED],
|
pres.S_SMOKE: [set_req.V_ARMED],
|
||||||
pres.S_LIGHT: [set_req.V_LIGHT],
|
|
||||||
pres.S_LOCK: [set_req.V_LOCK_STATUS],
|
pres.S_LOCK: [set_req.V_LOCK_STATUS],
|
||||||
}
|
}
|
||||||
if float(gateway.version) >= 1.5:
|
if float(gateway.version) >= 1.5:
|
||||||
|
@ -48,7 +48,6 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
|
||||||
pres.S_VIBRATION: [set_req.V_ARMED],
|
pres.S_VIBRATION: [set_req.V_ARMED],
|
||||||
pres.S_MOISTURE: [set_req.V_ARMED],
|
pres.S_MOISTURE: [set_req.V_ARMED],
|
||||||
})
|
})
|
||||||
map_sv_types[pres.S_LIGHT].append(set_req.V_STATUS)
|
|
||||||
|
|
||||||
devices = {}
|
devices = {}
|
||||||
gateway.platform_callbacks.append(mysensors.pf_callback_factory(
|
gateway.platform_callbacks.append(mysensors.pf_callback_factory(
|
||||||
|
@ -130,15 +129,19 @@ class MySensorsSwitch(SwitchDevice):
|
||||||
"""Turn the switch on."""
|
"""Turn the switch on."""
|
||||||
self.gateway.set_child_value(
|
self.gateway.set_child_value(
|
||||||
self.node_id, self.child_id, self.value_type, 1)
|
self.node_id, self.child_id, self.value_type, 1)
|
||||||
self._values[self.value_type] = STATE_ON
|
if self.gateway.optimistic:
|
||||||
self.update_ha_state()
|
# optimistically assume that switch has changed state
|
||||||
|
self._values[self.value_type] = STATE_ON
|
||||||
|
self.update_ha_state()
|
||||||
|
|
||||||
def turn_off(self):
|
def turn_off(self):
|
||||||
"""Turn the switch off."""
|
"""Turn the switch off."""
|
||||||
self.gateway.set_child_value(
|
self.gateway.set_child_value(
|
||||||
self.node_id, self.child_id, self.value_type, 0)
|
self.node_id, self.child_id, self.value_type, 0)
|
||||||
self._values[self.value_type] = STATE_OFF
|
if self.gateway.optimistic:
|
||||||
self.update_ha_state()
|
# optimistically assume that switch has changed state
|
||||||
|
self._values[self.value_type] = STATE_OFF
|
||||||
|
self.update_ha_state()
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def available(self):
|
def available(self):
|
||||||
|
@ -150,7 +153,7 @@ class MySensorsSwitch(SwitchDevice):
|
||||||
node = self.gateway.sensors[self.node_id]
|
node = self.gateway.sensors[self.node_id]
|
||||||
child = node.children[self.child_id]
|
child = node.children[self.child_id]
|
||||||
for value_type, value in child.values.items():
|
for value_type, value in child.values.items():
|
||||||
_LOGGER.info(
|
_LOGGER.debug(
|
||||||
"%s: value_type %s, value = %s", self._name, value_type, value)
|
"%s: value_type %s, value = %s", self._name, value_type, value)
|
||||||
if value_type == self.gateway.const.SetReq.V_ARMED or \
|
if value_type == self.gateway.const.SetReq.V_ARMED or \
|
||||||
value_type == self.gateway.const.SetReq.V_STATUS or \
|
value_type == self.gateway.const.SetReq.V_STATUS or \
|
||||||
|
|
Loading…
Reference in New Issue