core/homeassistant/components/switch/verisure.py

66 lines
1.9 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
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):
2016-07-13 12:47:29 +00:00
"""Setup the Verisure switch platform."""
if not int(hub.config.get(CONF_SMARTPLUGS, 1)):
2015-08-12 11:00:47 +00:00
return False
2016-02-27 20:50:19 +00:00
hub.update_smartplugs()
2015-08-12 11:00:47 +00:00
switches = []
switches.extend([
2016-04-22 18:02:54 +00:00
VerisureSmartplug(value.deviceLabel)
2016-02-27 20:50:19 +00:00
for value in hub.smartplug_status.values()])
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."""
2016-02-27 20:50:19 +00:00
self._id = device_id
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."""
2016-02-27 20:50:19 +00:00
return hub.smartplug_status[self._id].location
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."""
2016-02-27 20:50:19 +00:00
return hub.smartplug_status[self._id].status == 'on'
2015-08-12 11:00:47 +00:00
@property
def available(self):
"""Return True if entity is available."""
return hub.available
2015-08-12 11:00:47 +00:00
def turn_on(self):
2016-03-08 12:35:39 +00:00
"""Set smartplug status on."""
2016-02-27 20:50:19 +00:00
hub.my_pages.smartplug.set(self._id, 'on')
hub.my_pages.smartplug.wait_while_updating(self._id, 'on')
self.update()
2015-08-12 11:00:47 +00:00
def turn_off(self):
2016-03-08 12:35:39 +00:00
"""Set smartplug status off."""
2016-02-27 20:50:19 +00:00
hub.my_pages.smartplug.set(self._id, 'off')
hub.my_pages.smartplug.wait_while_updating(self._id, 'off')
self.update()
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."""
2016-02-27 20:50:19 +00:00
hub.update_smartplugs()