core/homeassistant/components/temper/sensor.py

106 lines
3.2 KiB
Python
Raw Normal View History

"""Support for getting temperature from TEMPer devices."""
import logging
from temperusb.temper import TemperHandler
import voluptuous as vol
2016-02-19 05:27:50 +00:00
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.const import CONF_NAME, DEVICE_DEFAULT_NAME, TEMP_FAHRENHEIT
2016-02-19 05:27:50 +00:00
from homeassistant.helpers.entity import Entity
_LOGGER = logging.getLogger(__name__)
2019-07-31 19:25:30 +00:00
CONF_SCALE = "scale"
CONF_OFFSET = "offset"
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
{
vol.Optional(CONF_NAME, default=DEVICE_DEFAULT_NAME): vol.Coerce(str),
vol.Optional(CONF_SCALE, default=1): vol.Coerce(float),
vol.Optional(CONF_OFFSET, default=0): vol.Coerce(float),
}
)
TEMPER_SENSORS = []
def get_temper_devices():
"""Scan the Temper devices from temperusb."""
2019-07-31 19:25:30 +00:00
return TemperHandler().get_devices()
2015-08-03 01:58:30 +00:00
def setup_platform(hass, config, add_entities, discovery_info=None):
2017-05-04 05:46:43 +00:00
"""Set up the Temper sensors."""
Add unit system support Add unit symbol constants Initial unit system object Import more constants Pydoc for unit system file Import constants for configuration validation Unit system validation method Typing for constants Inches are valid lengths too Typings Change base class to dict - needed for remote api call serialization Validation Use dictionary keys Defined unit systems Update location util to use metric instead of us fahrenheit Update constant imports Import defined unit systems Update configuration to use unit system Update schema to use unit system Update constants Add imports to core for unit system and distance Type for config Default unit system Convert distance from HASS instance Update temperature conversion to use unit system Update temperature conversion Set unit system based on configuration Set info unit system Return unit system dictionary with config dictionary Auto discover unit system Update location test for use metric Update forecast unit system Update mold indicator unit system Update thermostat unit system Update thermostat demo test Unit tests around unit system Update test common hass configuration Update configuration unit tests There should always be a unit system! Update core unit tests Constants typing Linting issues Remove unused import Update fitbit sensor to use application unit system Update google travel time to use application unit system Update configuration example Update dht sensor Update DHT temperature conversion to use the utility function Update swagger config Update my sensors metric flag Update hvac component temperature conversion HVAC conversion for temperature Pull unit from sensor type map Pull unit from sensor type map Update the temper sensor unit Update yWeather sensor unit Update hvac demo unit test Set unit test config unit system to metric Use hass unit system length for default in proximity Use the name of the system instead of temperature Use constants from const Unused import Forecasted temperature Fix calculation in case furthest distance is greater than 1000000 units Remove unneeded constants Set default length to km or miles Use constants Linting doesn't like importing just for typing Fix reference Test is expecting meters - set config to meters Use constant Use constant PyDoc for unit test Should be not in Rename to units Change unit system to be an object - not a dictionary Return tuple in conversion Move convert to temperature util Temperature conversion is now in unit system Update imports Rename to units Units is now an object Use temperature util conversion Unit system is now an object Validate and convert unit system config Return the scalar value in template distance Test is expecting meters Update unit tests around unit system Distance util returns tuple Fix location info test Set units Update unit tests Convert distance DOH Pull out the scalar from the vector Linting I really hate python linting Linting again BLARG Unit test documentation Unit test around is metric flag Break ternary statement into if/else blocks Don't use dictionary - use members is metric flag Rename constants Use is metric flag Move constants to CONST file Move to const file Raise error if unit is not expected Typing No need to return unit since only performing conversion if it can work Use constants Line wrapping Raise error if invalid value Remove subscripts from conversion as they are no longer returned as tuples No longer tuples No longer tuples Check for numeric type Fix string format to use correct variable Typing Assert errors raised Remove subscript Only convert temperature if we know the unit If no unit of measurement set - default to HASS config Convert only if we know the unit Remove subscription Fix not in clause Linting fixes Wants a boolean Clearer if-block Check if the key is in the config first Missed a couple expecting tuples Backwards compatibility No like-y ternary! Error handling around state setting Pretty unit system configuration validation More tuple crap Use is metric flag Error handling around min/max temp Explode if no unit Pull unit from config Celsius has a decimal Unused import Check if it's a temperature before we try to convert it to a temperature Linting says too many statements - combine lat/long in a fairly reasonable manner Backwards compatibility unit test Better doc
2016-07-31 20:24:49 +00:00
temp_unit = hass.config.units.temperature_unit
name = config.get(CONF_NAME)
2019-07-31 19:25:30 +00:00
scaling = {"scale": config.get(CONF_SCALE), "offset": config.get(CONF_OFFSET)}
temper_devices = get_temper_devices()
for idx, dev in enumerate(temper_devices):
if idx != 0:
name = f"{name}_{idx!s}"
TEMPER_SENSORS.append(TemperSensor(dev, temp_unit, name, scaling))
add_entities(TEMPER_SENSORS)
def reset_devices():
"""
Re-scan for underlying Temper sensors and assign them to our devices.
This assumes the same sensor devices are present in the same order.
"""
temper_devices = get_temper_devices()
for sensor, device in zip(TEMPER_SENSORS, temper_devices):
sensor.set_temper_device(device)
class TemperSensor(Entity):
2016-03-08 15:46:34 +00:00
"""Representation of a Temper temperature sensor."""
2016-02-23 05:21:49 +00:00
def __init__(self, temper_device, temp_unit, name, scaling):
2016-03-08 15:46:34 +00:00
"""Initialize the sensor."""
self.temp_unit = temp_unit
2019-07-31 19:25:30 +00:00
self.scale = scaling["scale"]
self.offset = scaling["offset"]
self.current_value = None
self._name = name
self.set_temper_device(temper_device)
@property
def name(self):
2016-03-08 15:46:34 +00:00
"""Return the name of the temperature sensor."""
return self._name
@property
def state(self):
2016-03-08 15:46:34 +00:00
"""Return the state of the entity."""
return self.current_value
@property
def unit_of_measurement(self):
2016-03-08 15:46:34 +00:00
"""Return the unit of measurement of this entity, if any."""
return self.temp_unit
def set_temper_device(self, temper_device):
"""Assign the underlying device for this sensor."""
self.temper_device = temper_device
# set calibration data
2019-07-31 19:25:30 +00:00
self.temper_device.set_calibration_data(scale=self.scale, offset=self.offset)
def update(self):
2016-02-23 05:21:49 +00:00
"""Retrieve latest state."""
try:
2019-07-31 19:25:30 +00:00
format_str = (
"fahrenheit" if self.temp_unit == TEMP_FAHRENHEIT else "celsius"
)
sensor_value = self.temper_device.get_temperature(format_str)
self.current_value = round(sensor_value, 1)
2019-09-04 17:09:24 +00:00
except OSError:
2019-07-31 19:25:30 +00:00
_LOGGER.error(
"Failed to get temperature. The device address may"
"have changed. Attempting to reset device"
)
reset_devices()