2019-02-14 15:01:46 +00:00
|
|
|
"""Support for the Hive switches."""
|
2020-04-26 16:50:37 +00:00
|
|
|
from homeassistant.components.switch import SwitchEntity
|
2018-01-15 22:24:12 +00:00
|
|
|
|
2019-12-08 20:06:05 +00:00
|
|
|
from . import DATA_HIVE, DOMAIN, HiveEntity, refresh_system
|
2019-03-21 05:56:46 +00:00
|
|
|
|
2018-01-15 22:24:12 +00:00
|
|
|
|
2018-08-24 14:37:30 +00:00
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
2018-01-15 22:24:12 +00:00
|
|
|
"""Set up Hive switches."""
|
|
|
|
if discovery_info is None:
|
|
|
|
return
|
|
|
|
|
2019-09-27 21:18:34 +00:00
|
|
|
session = hass.data.get(DATA_HIVE)
|
|
|
|
devs = []
|
|
|
|
for dev in discovery_info:
|
|
|
|
devs.append(HiveDevicePlug(session, dev))
|
|
|
|
add_entities(devs)
|
2018-01-15 22:24:12 +00:00
|
|
|
|
|
|
|
|
2020-04-26 16:50:37 +00:00
|
|
|
class HiveDevicePlug(HiveEntity, SwitchEntity):
|
2018-01-15 22:24:12 +00:00
|
|
|
"""Hive Active Plug."""
|
|
|
|
|
2019-01-09 04:15:12 +00:00
|
|
|
@property
|
|
|
|
def unique_id(self):
|
|
|
|
"""Return unique ID of entity."""
|
|
|
|
return self._unique_id
|
|
|
|
|
|
|
|
@property
|
|
|
|
def device_info(self):
|
|
|
|
"""Return device information."""
|
2019-07-31 19:25:30 +00:00
|
|
|
return {"identifiers": {(DOMAIN, self.unique_id)}, "name": self.name}
|
2019-01-09 04:15:12 +00:00
|
|
|
|
2018-01-15 22:24:12 +00:00
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""Return the name of this Switch device if any."""
|
|
|
|
return self.node_name
|
|
|
|
|
2018-04-16 19:00:13 +00:00
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Show Device Attributes."""
|
|
|
|
return self.attributes
|
|
|
|
|
2018-01-15 22:24:12 +00:00
|
|
|
@property
|
|
|
|
def current_power_w(self):
|
|
|
|
"""Return the current power usage in W."""
|
|
|
|
return self.session.switch.get_power_usage(self.node_id)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_on(self):
|
|
|
|
"""Return true if switch is on."""
|
|
|
|
return self.session.switch.get_state(self.node_id)
|
|
|
|
|
2019-09-27 21:18:34 +00:00
|
|
|
@refresh_system
|
2018-01-15 22:24:12 +00:00
|
|
|
def turn_on(self, **kwargs):
|
|
|
|
"""Turn the switch on."""
|
|
|
|
self.session.switch.turn_on(self.node_id)
|
|
|
|
|
2019-09-27 21:18:34 +00:00
|
|
|
@refresh_system
|
2018-01-15 22:24:12 +00:00
|
|
|
def turn_off(self, **kwargs):
|
|
|
|
"""Turn the device off."""
|
|
|
|
self.session.switch.turn_off(self.node_id)
|
|
|
|
|
|
|
|
def update(self):
|
2018-01-27 19:58:27 +00:00
|
|
|
"""Update all Node data from Hive."""
|
2018-01-15 22:24:12 +00:00
|
|
|
self.session.core.update_data(self.node_id)
|
2019-07-31 19:25:30 +00:00
|
|
|
self.attributes = self.session.attributes.state_attributes(self.node_id)
|