125 lines
3.8 KiB
Python
125 lines
3.8 KiB
Python
"""
|
|
Support for Tellstick sensors.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/sensor.tellstick/
|
|
"""
|
|
import logging
|
|
from collections import namedtuple
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.sensor import PLATFORM_SCHEMA
|
|
from homeassistant.const import TEMP_CELSIUS
|
|
from homeassistant.helpers.entity import Entity
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
DEPENDENCIES = ['tellstick']
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
DatatypeDescription = namedtuple('DatatypeDescription', ['name', 'unit'])
|
|
|
|
CONF_DATATYPE_MASK = 'datatype_mask'
|
|
CONF_ONLY_NAMED = 'only_named'
|
|
CONF_TEMPERATURE_SCALE = 'temperature_scale'
|
|
|
|
DEFAULT_DATATYPE_MASK = 127
|
|
DEFAULT_ONLY_NAMED = False
|
|
DEFAULT_TEMPERATURE_SCALE = TEMP_CELSIUS
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Optional(CONF_ONLY_NAMED, default=DEFAULT_ONLY_NAMED): cv.boolean,
|
|
vol.Optional(CONF_TEMPERATURE_SCALE, default=DEFAULT_TEMPERATURE_SCALE):
|
|
cv.string,
|
|
vol.Optional(CONF_DATATYPE_MASK, default=DEFAULT_DATATYPE_MASK):
|
|
cv.positive_int,
|
|
})
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up the Tellstick sensors."""
|
|
from tellcore import telldus
|
|
import tellcore.constants as tellcore_constants
|
|
|
|
sensor_value_descriptions = {
|
|
tellcore_constants.TELLSTICK_TEMPERATURE:
|
|
DatatypeDescription('temperature', config.get(CONF_TEMPERATURE_SCALE)),
|
|
|
|
tellcore_constants.TELLSTICK_HUMIDITY:
|
|
DatatypeDescription('humidity', '%'),
|
|
|
|
tellcore_constants.TELLSTICK_RAINRATE:
|
|
DatatypeDescription('rain rate', ''),
|
|
|
|
tellcore_constants.TELLSTICK_RAINTOTAL:
|
|
DatatypeDescription('rain total', ''),
|
|
|
|
tellcore_constants.TELLSTICK_WINDDIRECTION:
|
|
DatatypeDescription('wind direction', ''),
|
|
|
|
tellcore_constants.TELLSTICK_WINDAVERAGE:
|
|
DatatypeDescription('wind average', ''),
|
|
|
|
tellcore_constants.TELLSTICK_WINDGUST:
|
|
DatatypeDescription('wind gust', '')
|
|
}
|
|
|
|
try:
|
|
tellcore_lib = telldus.TelldusCore()
|
|
except OSError:
|
|
_LOGGER.exception('Could not initialize Tellstick')
|
|
return
|
|
|
|
sensors = []
|
|
datatype_mask = config.get(CONF_DATATYPE_MASK)
|
|
|
|
for tellcore_sensor in tellcore_lib.sensors():
|
|
try:
|
|
sensor_name = config[tellcore_sensor.id]
|
|
except KeyError:
|
|
if config.get(CONF_ONLY_NAMED):
|
|
continue
|
|
sensor_name = str(tellcore_sensor.id)
|
|
|
|
for datatype in sensor_value_descriptions:
|
|
if datatype & datatype_mask:
|
|
if tellcore_sensor.has_value(datatype):
|
|
sensor_info = sensor_value_descriptions[datatype]
|
|
sensors.append(TellstickSensor(
|
|
sensor_name, tellcore_sensor, datatype, sensor_info))
|
|
|
|
add_entities(sensors)
|
|
|
|
|
|
class TellstickSensor(Entity):
|
|
"""Representation of a Tellstick sensor."""
|
|
|
|
def __init__(self, name, tellcore_sensor, datatype, sensor_info):
|
|
"""Initialize the sensor."""
|
|
self._datatype = datatype
|
|
self._tellcore_sensor = tellcore_sensor
|
|
self._unit_of_measurement = sensor_info.unit or None
|
|
self._value = None
|
|
|
|
self._name = '{} {}'.format(name, sensor_info.name)
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the sensor."""
|
|
return self._name
|
|
|
|
@property
|
|
def state(self):
|
|
"""Return the state of the sensor."""
|
|
return self._value
|
|
|
|
@property
|
|
def unit_of_measurement(self):
|
|
"""Return the unit of measurement of this entity, if any."""
|
|
return self._unit_of_measurement
|
|
|
|
def update(self):
|
|
"""Update tellstick sensor."""
|
|
self._value = self._tellcore_sensor.value(self._datatype).value
|