core/homeassistant/components/mysensors/sensor.py

108 lines
3.5 KiB
Python
Raw Normal View History

"""Support for MySensors sensors."""
from homeassistant.components import mysensors
from homeassistant.components.sensor import DOMAIN
2019-07-31 19:25:30 +00:00
from homeassistant.const import (
ENERGY_KILO_WATT_HOUR,
MASS_KILOGRAMS,
POWER_WATT,
2019-07-31 19:25:30 +00:00
TEMP_CELSIUS,
TEMP_FAHRENHEIT,
UNIT_CONDUCTIVITY,
UNIT_DEGREE,
UNIT_PERCENTAGE,
UNIT_VOLT,
2019-07-31 19:25:30 +00:00
)
2015-04-02 17:59:44 +00:00
SENSORS = {
2019-07-31 19:25:30 +00:00
"V_TEMP": [None, "mdi:thermometer"],
"V_HUM": [UNIT_PERCENTAGE, "mdi:water-percent"],
"V_DIMMER": [UNIT_PERCENTAGE, "mdi:percent"],
"V_PERCENTAGE": [UNIT_PERCENTAGE, "mdi:percent"],
2019-07-31 19:25:30 +00:00
"V_PRESSURE": [None, "mdi:gauge"],
2019-08-29 20:22:29 +00:00
"V_FORECAST": [None, "mdi:weather-partly-cloudy"],
2019-07-31 19:25:30 +00:00
"V_RAIN": [None, "mdi:weather-rainy"],
"V_RAINRATE": [None, "mdi:weather-rainy"],
"V_WIND": [None, "mdi:weather-windy"],
"V_GUST": [None, "mdi:weather-windy"],
"V_DIRECTION": [UNIT_DEGREE, "mdi:compass"],
"V_WEIGHT": [MASS_KILOGRAMS, "mdi:weight-kilogram"],
2019-07-31 19:25:30 +00:00
"V_DISTANCE": ["m", "mdi:ruler"],
"V_IMPEDANCE": ["ohm", None],
"V_WATT": [POWER_WATT, None],
"V_KWH": [ENERGY_KILO_WATT_HOUR, None],
"V_LIGHT_LEVEL": [UNIT_PERCENTAGE, "mdi:white-balance-sunny"],
2019-07-31 19:25:30 +00:00
"V_FLOW": ["m", "mdi:gauge"],
"V_VOLUME": ["", None],
"V_LEVEL": {
"S_SOUND": ["dB", "mdi:volume-high"],
"S_VIBRATION": ["Hz", None],
"S_LIGHT_LEVEL": ["lx", "mdi:white-balance-sunny"],
},
"V_VOLTAGE": [UNIT_VOLT, "mdi:flash"],
2019-07-31 19:25:30 +00:00
"V_CURRENT": ["A", "mdi:flash-auto"],
"V_PH": ["pH", None],
"V_ORP": ["mV", None],
"V_EC": [UNIT_CONDUCTIVITY, None],
2019-07-31 19:25:30 +00:00
"V_VAR": ["var", None],
"V_VA": ["VA", None],
}
2015-04-02 17:59:44 +00:00
2019-07-31 19:25:30 +00:00
async def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
"""Set up the MySensors platform for sensors."""
mysensors.setup_mysensors_platform(
2019-07-31 19:25:30 +00:00
hass,
DOMAIN,
discovery_info,
MySensorsSensor,
async_add_entities=async_add_entities,
)
2015-04-02 17:59:44 +00:00
class MySensorsSensor(mysensors.device.MySensorsEntity):
"""Representation of a MySensors Sensor child node."""
2015-04-02 17:59:44 +00:00
@property
def force_update(self):
"""Return True if state updates should be forced.
If True, a state change will be triggered anytime the state property is
updated, not just when the value changes.
"""
return True
2015-04-02 17:59:44 +00:00
@property
def state(self):
2015-12-08 00:03:07 +00:00
"""Return the state of the device."""
return self._values.get(self.value_type)
@property
def icon(self):
"""Return the icon to use in the frontend, if any."""
_, icon = self._get_sensor_type()
return icon
@property
def unit_of_measurement(self):
2016-03-08 15:46:34 +00:00
"""Return the unit of measurement of this entity."""
set_req = self.gateway.const.SetReq
2019-07-31 19:25:30 +00:00
if (
float(self.gateway.protocol_version) >= 1.5
and set_req.V_UNIT_PREFIX in self._values
):
return self._values[set_req.V_UNIT_PREFIX]
unit, _ = self._get_sensor_type()
return unit
def _get_sensor_type(self):
"""Return list with unit and icon of sensor type."""
pres = self.gateway.const.Presentation
set_req = self.gateway.const.SetReq
SENSORS[set_req.V_TEMP.name][0] = (
2019-07-31 19:25:30 +00:00
TEMP_CELSIUS if self.gateway.metric else TEMP_FAHRENHEIT
)
sensor_type = SENSORS.get(set_req(self.value_type).name, [None, None])
if isinstance(sensor_type, dict):
2019-07-31 19:25:30 +00:00
sensor_type = sensor_type.get(pres(self.child_type).name, [None, None])
return sensor_type