core/homeassistant/components/sensor/zigbee.py

82 lines
2.5 KiB
Python
Raw Normal View History

2016-01-24 08:02:14 +00:00
"""
2016-03-08 15:46:34 +00:00
Support for functionality to use a ZigBee device as a sensor.
2016-01-24 08:02:14 +00:00
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/sensor.zigbee/
"""
2016-01-24 08:02:14 +00:00
import logging
from binascii import hexlify
2016-01-24 08:02:14 +00:00
2016-02-19 05:27:50 +00:00
from homeassistant.components import zigbee
2016-01-24 08:02:14 +00:00
from homeassistant.const import TEMP_CELCIUS
2016-02-19 05:27:50 +00:00
from homeassistant.core import JobPriority
2016-01-24 08:02:14 +00:00
from homeassistant.helpers.entity import Entity
DEPENDENCIES = ["zigbee"]
_LOGGER = logging.getLogger(__name__)
def setup_platform(hass, config, add_entities, discovery_info=None):
2016-03-08 15:46:34 +00:00
"""Setup the Z-Wave platform.
2016-01-24 08:02:14 +00:00
Uses the 'type' config value to work out which type of ZigBee sensor we're
dealing with and instantiates the relevant classes to handle it.
"""
typ = config.get("type", "").lower()
if not typ:
_LOGGER.exception(
"Must include 'type' when configuring a ZigBee sensor.")
return
try:
sensor_class, config_class = TYPE_CLASSES[typ]
except KeyError:
_LOGGER.exception("Unknown ZigBee sensor type: %s", typ)
return
add_entities([sensor_class(hass, config_class(config))])
class ZigBeeTemperatureSensor(Entity):
2016-03-08 15:46:34 +00:00
"""Representation of XBee Pro temperature sensor."""
2016-01-24 08:02:14 +00:00
def __init__(self, hass, config):
2016-03-08 15:46:34 +00:00
"""Initialize the sensor."""
2016-01-24 08:02:14 +00:00
self._config = config
self._temp = None
# Get initial state
hass.pool.add_job(
JobPriority.EVENT_STATE, (self.update_ha_state, True))
2016-01-24 08:02:14 +00:00
@property
def name(self):
2016-03-08 15:46:34 +00:00
"""Return the name of the sensor."""
2016-01-24 08:02:14 +00:00
return self._config.name
@property
def state(self):
2016-03-08 15:46:34 +00:00
"""Return the state of the sensor."""
2016-01-24 08:02:14 +00:00
return self._temp
@property
def unit_of_measurement(self):
2016-02-23 05:21:49 +00:00
"""Unit the value is expressed in."""
2016-01-24 08:02:14 +00:00
return TEMP_CELCIUS
def update(self, *args):
2016-03-08 15:46:34 +00:00
"""Get the latest data."""
try:
self._temp = zigbee.DEVICE.get_temperature(self._config.address)
except zigbee.ZIGBEE_TX_FAILURE:
_LOGGER.warning(
"Transmission failure when attempting to get sample from "
"ZigBee device at address: %s", hexlify(self._config.address))
except zigbee.ZIGBEE_EXCEPTION as exc:
_LOGGER.exception(
"Unable to get sample from ZigBee device: %s", exc)
2016-01-24 08:02:14 +00:00
# This must be below the classes to which it refers.
2016-01-24 08:02:14 +00:00
TYPE_CLASSES = {
"temperature": (ZigBeeTemperatureSensor, zigbee.ZigBeeConfig),
"analog": (zigbee.ZigBeeAnalogIn, zigbee.ZigBeeAnalogInConfig)
}