2018-07-27 04:43:20 +00:00
|
|
|
"""
|
|
|
|
Support for Spider switches.
|
|
|
|
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
|
|
https://home-assistant.io/components/switch.spider/
|
|
|
|
"""
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
from homeassistant.components.spider import DOMAIN as SPIDER_DOMAIN
|
|
|
|
from homeassistant.components.switch import SwitchDevice
|
|
|
|
|
|
|
|
DEPENDENCIES = ['spider']
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2018-08-24 14:37:30 +00:00
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
2018-07-27 04:43:20 +00:00
|
|
|
"""Set up the Spider thermostat."""
|
|
|
|
if discovery_info is None:
|
|
|
|
return
|
|
|
|
|
|
|
|
devices = [SpiderPowerPlug(hass.data[SPIDER_DOMAIN]['controller'], device)
|
|
|
|
for device in hass.data[SPIDER_DOMAIN]['power_plugs']]
|
|
|
|
|
2018-08-24 14:37:30 +00:00
|
|
|
add_entities(devices, True)
|
2018-07-27 04:43:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SpiderPowerPlug(SwitchDevice):
|
|
|
|
"""Representation of a Spider Power Plug."""
|
|
|
|
|
|
|
|
def __init__(self, api, power_plug):
|
|
|
|
"""Initialize the Vera device."""
|
|
|
|
self.api = api
|
|
|
|
self.power_plug = power_plug
|
|
|
|
|
|
|
|
@property
|
|
|
|
def unique_id(self):
|
|
|
|
"""Return the ID of this switch."""
|
|
|
|
return self.power_plug.id
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""Return the name of the switch if any."""
|
|
|
|
return self.power_plug.name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def current_power_w(self):
|
|
|
|
"""Return the current power usage in W."""
|
|
|
|
return round(self.power_plug.current_energy_consumption)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def today_energy_kwh(self):
|
|
|
|
"""Return the current power usage in Kwh."""
|
|
|
|
return round(self.power_plug.today_energy_consumption / 1000, 2)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_on(self):
|
|
|
|
"""Return true if switch is on. Standby is on."""
|
|
|
|
return self.power_plug.is_on
|
|
|
|
|
|
|
|
@property
|
|
|
|
def available(self):
|
|
|
|
"""Return true if switch is available."""
|
|
|
|
return self.power_plug.is_available
|
|
|
|
|
|
|
|
def turn_on(self, **kwargs):
|
|
|
|
"""Turn device on."""
|
|
|
|
self.power_plug.turn_on()
|
|
|
|
|
|
|
|
def turn_off(self, **kwargs):
|
|
|
|
"""Turn device off."""
|
|
|
|
self.power_plug.turn_off()
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
"""Get the latest data."""
|
|
|
|
self.power_plug = self.api.get_power_plug(self.unique_id)
|