add entity support to hive (#19879)
This commit is contained in:
parent
b4c657a39c
commit
6d9fda04ac
5 changed files with 85 additions and 6 deletions
|
@ -5,7 +5,7 @@ For more details about this platform, please refer to the documentation at
|
||||||
https://home-assistant.io/components/binary_sensor.hive/
|
https://home-assistant.io/components/binary_sensor.hive/
|
||||||
"""
|
"""
|
||||||
from homeassistant.components.binary_sensor import BinarySensorDevice
|
from homeassistant.components.binary_sensor import BinarySensorDevice
|
||||||
from homeassistant.components.hive import DATA_HIVE
|
from homeassistant.components.hive import DATA_HIVE, DOMAIN
|
||||||
|
|
||||||
DEPENDENCIES = ['hive']
|
DEPENDENCIES = ['hive']
|
||||||
|
|
||||||
|
@ -35,9 +35,24 @@ class HiveBinarySensorEntity(BinarySensorDevice):
|
||||||
self.attributes = {}
|
self.attributes = {}
|
||||||
self.data_updatesource = '{}.{}'.format(self.device_type,
|
self.data_updatesource = '{}.{}'.format(self.device_type,
|
||||||
self.node_id)
|
self.node_id)
|
||||||
|
self._unique_id = '{}-{}'.format(self.node_id, self.device_type)
|
||||||
self.session.entities.append(self)
|
self.session.entities.append(self)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unique_id(self):
|
||||||
|
"""Return unique ID of entity."""
|
||||||
|
return self._unique_id
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_info(self):
|
||||||
|
"""Return device information."""
|
||||||
|
return {
|
||||||
|
'identifiers': {
|
||||||
|
(DOMAIN, self.unique_id)
|
||||||
|
},
|
||||||
|
'name': self.name
|
||||||
|
}
|
||||||
|
|
||||||
def handle_update(self, updatesource):
|
def handle_update(self, updatesource):
|
||||||
"""Handle the new update request."""
|
"""Handle the new update request."""
|
||||||
if '{}.{}'.format(self.device_type, self.node_id) not in updatesource:
|
if '{}.{}'.format(self.device_type, self.node_id) not in updatesource:
|
||||||
|
|
|
@ -8,7 +8,7 @@ from homeassistant.components.climate import (
|
||||||
ClimateDevice, STATE_AUTO, STATE_HEAT, STATE_OFF, STATE_ON,
|
ClimateDevice, STATE_AUTO, STATE_HEAT, STATE_OFF, STATE_ON,
|
||||||
SUPPORT_AUX_HEAT, SUPPORT_TARGET_TEMPERATURE, SUPPORT_OPERATION_MODE)
|
SUPPORT_AUX_HEAT, SUPPORT_TARGET_TEMPERATURE, SUPPORT_OPERATION_MODE)
|
||||||
from homeassistant.const import ATTR_TEMPERATURE, TEMP_CELSIUS
|
from homeassistant.const import ATTR_TEMPERATURE, TEMP_CELSIUS
|
||||||
from homeassistant.components.hive import DATA_HIVE
|
from homeassistant.components.hive import DATA_HIVE, DOMAIN
|
||||||
|
|
||||||
DEPENDENCIES = ['hive']
|
DEPENDENCIES = ['hive']
|
||||||
HIVE_TO_HASS_STATE = {'SCHEDULE': STATE_AUTO, 'MANUAL': STATE_HEAT,
|
HIVE_TO_HASS_STATE = {'SCHEDULE': STATE_AUTO, 'MANUAL': STATE_HEAT,
|
||||||
|
@ -44,6 +44,7 @@ class HiveClimateEntity(ClimateDevice):
|
||||||
self.attributes = {}
|
self.attributes = {}
|
||||||
self.data_updatesource = '{}.{}'.format(self.device_type,
|
self.data_updatesource = '{}.{}'.format(self.device_type,
|
||||||
self.node_id)
|
self.node_id)
|
||||||
|
self._unique_id = '{}-{}'.format(self.node_id, self.device_type)
|
||||||
|
|
||||||
if self.device_type == "Heating":
|
if self.device_type == "Heating":
|
||||||
self.modes = [STATE_AUTO, STATE_HEAT, STATE_OFF]
|
self.modes = [STATE_AUTO, STATE_HEAT, STATE_OFF]
|
||||||
|
@ -52,6 +53,21 @@ class HiveClimateEntity(ClimateDevice):
|
||||||
|
|
||||||
self.session.entities.append(self)
|
self.session.entities.append(self)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unique_id(self):
|
||||||
|
"""Return unique ID of entity."""
|
||||||
|
return self._unique_id
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_info(self):
|
||||||
|
"""Return device information."""
|
||||||
|
return {
|
||||||
|
'identifiers': {
|
||||||
|
(DOMAIN, self.unique_id)
|
||||||
|
},
|
||||||
|
'name': self.name
|
||||||
|
}
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def supported_features(self):
|
def supported_features(self):
|
||||||
"""Return the list of supported features."""
|
"""Return the list of supported features."""
|
||||||
|
|
|
@ -4,7 +4,7 @@ Support for the Hive devices.
|
||||||
For more details about this platform, please refer to the documentation at
|
For more details about this platform, please refer to the documentation at
|
||||||
https://home-assistant.io/components/light.hive/
|
https://home-assistant.io/components/light.hive/
|
||||||
"""
|
"""
|
||||||
from homeassistant.components.hive import DATA_HIVE
|
from homeassistant.components.hive import DATA_HIVE, DOMAIN
|
||||||
from homeassistant.components.light import (ATTR_BRIGHTNESS, ATTR_COLOR_TEMP,
|
from homeassistant.components.light import (ATTR_BRIGHTNESS, ATTR_COLOR_TEMP,
|
||||||
ATTR_HS_COLOR,
|
ATTR_HS_COLOR,
|
||||||
SUPPORT_BRIGHTNESS,
|
SUPPORT_BRIGHTNESS,
|
||||||
|
@ -37,8 +37,24 @@ class HiveDeviceLight(Light):
|
||||||
self.attributes = {}
|
self.attributes = {}
|
||||||
self.data_updatesource = '{}.{}'.format(self.device_type,
|
self.data_updatesource = '{}.{}'.format(self.device_type,
|
||||||
self.node_id)
|
self.node_id)
|
||||||
|
self._unique_id = '{}-{}'.format(self.node_id, self.device_type)
|
||||||
self.session.entities.append(self)
|
self.session.entities.append(self)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unique_id(self):
|
||||||
|
"""Return unique ID of entity."""
|
||||||
|
return self._unique_id
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_info(self):
|
||||||
|
"""Return device information."""
|
||||||
|
return {
|
||||||
|
'identifiers': {
|
||||||
|
(DOMAIN, self.unique_id)
|
||||||
|
},
|
||||||
|
'name': self.name
|
||||||
|
}
|
||||||
|
|
||||||
def handle_update(self, updatesource):
|
def handle_update(self, updatesource):
|
||||||
"""Handle the new update request."""
|
"""Handle the new update request."""
|
||||||
if '{}.{}'.format(self.device_type, self.node_id) not in updatesource:
|
if '{}.{}'.format(self.device_type, self.node_id) not in updatesource:
|
||||||
|
|
|
@ -5,7 +5,7 @@ For more details about this platform, please refer to the documentation at
|
||||||
https://home-assistant.io/components/sensor.hive/
|
https://home-assistant.io/components/sensor.hive/
|
||||||
"""
|
"""
|
||||||
from homeassistant.const import TEMP_CELSIUS
|
from homeassistant.const import TEMP_CELSIUS
|
||||||
from homeassistant.components.hive import DATA_HIVE
|
from homeassistant.components.hive import DATA_HIVE, DOMAIN
|
||||||
from homeassistant.helpers.entity import Entity
|
from homeassistant.helpers.entity import Entity
|
||||||
|
|
||||||
DEPENDENCIES = ['hive']
|
DEPENDENCIES = ['hive']
|
||||||
|
@ -38,8 +38,24 @@ class HiveSensorEntity(Entity):
|
||||||
self.session = hivesession
|
self.session = hivesession
|
||||||
self.data_updatesource = '{}.{}'.format(self.device_type,
|
self.data_updatesource = '{}.{}'.format(self.device_type,
|
||||||
self.node_id)
|
self.node_id)
|
||||||
|
self._unique_id = '{}-{}'.format(self.node_id, self.device_type)
|
||||||
self.session.entities.append(self)
|
self.session.entities.append(self)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unique_id(self):
|
||||||
|
"""Return unique ID of entity."""
|
||||||
|
return self._unique_id
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_info(self):
|
||||||
|
"""Return device information."""
|
||||||
|
return {
|
||||||
|
'identifiers': {
|
||||||
|
(DOMAIN, self.unique_id)
|
||||||
|
},
|
||||||
|
'name': self.name
|
||||||
|
}
|
||||||
|
|
||||||
def handle_update(self, updatesource):
|
def handle_update(self, updatesource):
|
||||||
"""Handle the new update request."""
|
"""Handle the new update request."""
|
||||||
if '{}.{}'.format(self.device_type, self.node_id) not in updatesource:
|
if '{}.{}'.format(self.device_type, self.node_id) not in updatesource:
|
||||||
|
|
|
@ -5,7 +5,7 @@ For more details about this platform, please refer to the documentation at
|
||||||
https://home-assistant.io/components/switch.hive/
|
https://home-assistant.io/components/switch.hive/
|
||||||
"""
|
"""
|
||||||
from homeassistant.components.switch import SwitchDevice
|
from homeassistant.components.switch import SwitchDevice
|
||||||
from homeassistant.components.hive import DATA_HIVE
|
from homeassistant.components.hive import DATA_HIVE, DOMAIN
|
||||||
|
|
||||||
DEPENDENCIES = ['hive']
|
DEPENDENCIES = ['hive']
|
||||||
|
|
||||||
|
@ -31,8 +31,24 @@ class HiveDevicePlug(SwitchDevice):
|
||||||
self.attributes = {}
|
self.attributes = {}
|
||||||
self.data_updatesource = '{}.{}'.format(self.device_type,
|
self.data_updatesource = '{}.{}'.format(self.device_type,
|
||||||
self.node_id)
|
self.node_id)
|
||||||
|
self._unique_id = '{}-{}'.format(self.node_id, self.device_type)
|
||||||
self.session.entities.append(self)
|
self.session.entities.append(self)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unique_id(self):
|
||||||
|
"""Return unique ID of entity."""
|
||||||
|
return self._unique_id
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_info(self):
|
||||||
|
"""Return device information."""
|
||||||
|
return {
|
||||||
|
'identifiers': {
|
||||||
|
(DOMAIN, self.unique_id)
|
||||||
|
},
|
||||||
|
'name': self.name
|
||||||
|
}
|
||||||
|
|
||||||
def handle_update(self, updatesource):
|
def handle_update(self, updatesource):
|
||||||
"""Handle the new update request."""
|
"""Handle the new update request."""
|
||||||
if '{}.{}'.format(self.device_type, self.node_id) not in updatesource:
|
if '{}.{}'.format(self.device_type, self.node_id) not in updatesource:
|
||||||
|
|
Loading…
Add table
Reference in a new issue