core/homeassistant/components/switch/zwave.py

67 lines
1.9 KiB
Python
Raw Normal View History

2015-11-07 14:52:36 +00:00
"""
2015-11-10 19:04:25 +00:00
homeassistant.components.switch.zwave
2015-11-07 14:52:36 +00:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2015-11-10 19:04:25 +00:00
Zwave platform that handles simple binary switches.
2015-11-07 14:52:36 +00:00
"""
2015-11-29 21:49:05 +00:00
# Because we do not compile openzwave on CI
2015-11-07 14:52:36 +00:00
# pylint: disable=import-error
import homeassistant.components.zwave as zwave
from homeassistant.components.switch import SwitchDevice
from homeassistant.components.zwave import ZWaveDeviceEntity
DOMAIN = "switch"
2015-11-07 14:52:36 +00:00
# pylint: disable=unused-argument
def setup_platform(hass, config, add_devices, discovery_info=None):
""" Find and return demo switches. """
if discovery_info is None:
return
node = zwave.NETWORK.nodes[discovery_info[zwave.ATTR_NODE_ID]]
value = node.values[discovery_info[zwave.ATTR_VALUE_ID]]
if value.command_class != zwave.COMMAND_CLASS_SWITCH_BINARY:
return
if value.type != zwave.TYPE_BOOL:
return
if value.genre != zwave.GENRE_USER:
return
value.set_change_verified(False)
add_devices([ZwaveSwitch(value)])
class ZwaveSwitch(ZWaveDeviceEntity, SwitchDevice):
2015-11-07 14:52:36 +00:00
""" Provides a zwave switch. """
def __init__(self, value):
2015-11-17 08:18:42 +00:00
from openzwave.network import ZWaveNetwork
from pydispatch import dispatcher
ZWaveDeviceEntity.__init__(self, value, DOMAIN)
2015-11-07 14:52:36 +00:00
self._state = value.data
dispatcher.connect(
self._value_changed, ZWaveNetwork.SIGNAL_VALUE_CHANGED)
def _value_changed(self, value):
""" Called when a value has changed on the network. """
if self._value.value_id == value.value_id:
self._state = value.data
self.update_ha_state()
@property
def is_on(self):
""" True if device is on. """
return self._state
def turn_on(self, **kwargs):
""" Turn the device on. """
self._value.node.set_switch(self._value.value_id, True)
2015-11-07 14:52:36 +00:00
def turn_off(self, **kwargs):
""" Turn the device off. """
self._value.node.set_switch(self._value.value_id, False)