core/homeassistant/components/switch/verisure.py

78 lines
2.3 KiB
Python
Raw Normal View History

2015-08-12 11:00:47 +00:00
"""
Support for Verisure Smartplugs.
2015-11-09 12:12:18 +00:00
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/switch.verisure/
2015-08-12 11:00:47 +00:00
"""
import logging
from time import time
2015-08-12 11:00:47 +00:00
2016-02-27 20:50:19 +00:00
from homeassistant.components.verisure import HUB as hub
from homeassistant.components.verisure import CONF_SMARTPLUGS
2015-08-12 11:00:47 +00:00
from homeassistant.components.switch import SwitchDevice
_LOGGER = logging.getLogger(__name__)
def setup_platform(hass, config, add_devices, discovery_info=None):
"""Set up the Verisure switch platform."""
if not int(hub.config.get(CONF_SMARTPLUGS, 1)):
2015-08-12 11:00:47 +00:00
return False
hub.update_overview()
2015-08-12 11:00:47 +00:00
switches = []
switches.extend([
VerisureSmartplug(device_label)
for device_label in hub.get('$.smartPlugs[*].deviceLabel')])
2015-08-12 11:00:47 +00:00
add_devices(switches)
class VerisureSmartplug(SwitchDevice):
2016-03-08 12:35:39 +00:00
"""Representation of a Verisure smartplug."""
2016-02-27 20:50:19 +00:00
def __init__(self, device_id):
2016-03-08 12:35:39 +00:00
"""Initialize the Verisure device."""
self._device_label = device_id
self._change_timestamp = 0
self._state = False
2015-08-12 11:00:47 +00:00
@property
def name(self):
2016-03-08 12:35:39 +00:00
"""Return the name or location of the smartplug."""
return hub.get_first(
"$.smartPlugs[?(@.deviceLabel == '%s')].area",
2017-06-30 06:53:14 +00:00
self._device_label)
2015-08-12 11:00:47 +00:00
@property
def is_on(self):
2016-03-08 12:35:39 +00:00
"""Return true if on."""
if time() - self._change_timestamp < 10:
return self._state
self._state = hub.get_first(
"$.smartPlugs[?(@.deviceLabel == '%s')].currentState",
self._device_label) == "ON"
return self._state
2015-08-12 11:00:47 +00:00
@property
def available(self):
"""Return True if entity is available."""
return hub.get_first(
"$.smartPlugs[?(@.deviceLabel == '%s')]",
self._device_label) is not None
2015-08-12 11:00:47 +00:00
def turn_on(self):
2016-03-08 12:35:39 +00:00
"""Set smartplug status on."""
hub.session.set_smartplug_state(self._device_label, True)
self._state = True
self._change_timestamp = time()
2015-08-12 11:00:47 +00:00
def turn_off(self):
2016-03-08 12:35:39 +00:00
"""Set smartplug status off."""
hub.session.set_smartplug_state(self._device_label, False)
self._state = False
self._change_timestamp = time()
2015-08-15 11:36:30 +00:00
def update(self):
2016-03-08 12:35:39 +00:00
"""Get the latest date of the smartplug."""
hub.update_overview()