* Add Sensor platform and update pysmartthings 0.6.0 * Add tests for Sensor platform * Redesigned capability subscription process * Removed redundant Entity inheritance * Updated per review feedback.
218 lines
8.5 KiB
Python
218 lines
8.5 KiB
Python
"""
|
|
Support for sensors through the SmartThings cloud API.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/smartthings.sensor/
|
|
"""
|
|
from collections import namedtuple
|
|
|
|
from homeassistant.const import (
|
|
DEVICE_CLASS_BATTERY, DEVICE_CLASS_HUMIDITY, DEVICE_CLASS_ILLUMINANCE,
|
|
DEVICE_CLASS_TEMPERATURE, DEVICE_CLASS_TIMESTAMP, MASS_KILOGRAMS,
|
|
TEMP_CELSIUS, TEMP_FAHRENHEIT)
|
|
|
|
from . import SmartThingsEntity
|
|
from .const import DATA_BROKERS, DOMAIN
|
|
|
|
DEPENDENCIES = ['smartthings']
|
|
|
|
Map = namedtuple("map", "attribute name default_unit device_class")
|
|
|
|
CAPABILITY_TO_SENSORS = {
|
|
'activityLightingMode': [
|
|
Map('lightingMode', "Activity Lighting Mode", None, None)],
|
|
'airConditionerMode': [
|
|
Map('airConditionerMode', "Air Conditioner Mode", None, None)],
|
|
'airQualitySensor': [
|
|
Map('airQuality', "Air Quality", 'CAQI', None)],
|
|
'alarm': [
|
|
Map('alarm', "Alarm", None, None)],
|
|
'audioVolume': [
|
|
Map('volume', "Volume", "%", None)],
|
|
'battery': [
|
|
Map('battery', "Battery", "%", DEVICE_CLASS_BATTERY)],
|
|
'bodyMassIndexMeasurement': [
|
|
Map('bmiMeasurement', "Body Mass Index", "kg/m^2", None)],
|
|
'bodyWeightMeasurement': [
|
|
Map('bodyWeightMeasurement', "Body Weight", MASS_KILOGRAMS, None)],
|
|
'carbonDioxideMeasurement': [
|
|
Map('carbonDioxide', "Carbon Dioxide Measurement", "ppm", None)],
|
|
'carbonMonoxideDetector': [
|
|
Map('carbonMonoxide', "Carbon Monoxide Detector", None, None)],
|
|
'carbonMonoxideMeasurement': [
|
|
Map('carbonMonoxideLevel', "Carbon Monoxide Measurement", "ppm",
|
|
None)],
|
|
'dishwasherOperatingState': [
|
|
Map('machineState', "Dishwasher Machine State", None, None),
|
|
Map('dishwasherJobState', "Dishwasher Job State", None, None),
|
|
Map('completionTime', "Dishwasher Completion Time", None,
|
|
DEVICE_CLASS_TIMESTAMP)],
|
|
'doorControl': [
|
|
Map('door', "Door", None, None)],
|
|
'dryerMode': [
|
|
Map('dryerMode', "Dryer Mode", None, None)],
|
|
'dryerOperatingState': [
|
|
Map('machineState', "Dryer Machine State", None, None),
|
|
Map('dryerJobState', "Dryer Job State", None, None),
|
|
Map('completionTime', "Dryer Completion Time", None,
|
|
DEVICE_CLASS_TIMESTAMP)],
|
|
'dustSensor': [
|
|
Map('fineDustLevel', "Fine Dust Level", None, None),
|
|
Map('dustLevel', "Dust Level", None, None)],
|
|
'energyMeter': [
|
|
Map('energy', "Energy Meter", 'kWh', None)],
|
|
'equivalentCarbonDioxideMeasurement': [
|
|
Map('equivalentCarbonDioxideMeasurement',
|
|
'Equivalent Carbon Dioxide Measurement', 'ppm', None)],
|
|
'formaldehydeMeasurement': [
|
|
Map('formaldehydeLevel', 'Formaldehyde Measurement', 'ppm', None)],
|
|
'garageDoorControl': [
|
|
Map('door', 'Garage Door', None, None)],
|
|
'illuminanceMeasurement': [
|
|
Map('illuminance', "Illuminance", 'lux', DEVICE_CLASS_ILLUMINANCE)],
|
|
'infraredLevel': [
|
|
Map('infraredLevel', "Infrared Level", '%', None)],
|
|
'lock': [
|
|
Map('lock', "Lock", None, None)],
|
|
'mediaInputSource': [
|
|
Map('inputSource', "Media Input Source", None, None)],
|
|
'mediaPlaybackRepeat': [
|
|
Map('playbackRepeatMode', "Media Playback Repeat", None, None)],
|
|
'mediaPlaybackShuffle': [
|
|
Map('playbackShuffle', "Media Playback Shuffle", None, None)],
|
|
'mediaPlayback': [
|
|
Map('playbackStatus', "Media Playback Status", None, None)],
|
|
'odorSensor': [
|
|
Map('odorLevel', "Odor Sensor", None, None)],
|
|
'ovenMode': [
|
|
Map('ovenMode', "Oven Mode", None, None)],
|
|
'ovenOperatingState': [
|
|
Map('machineState', "Oven Machine State", None, None),
|
|
Map('ovenJobState', "Oven Job State", None, None),
|
|
Map('completionTime', "Oven Completion Time", None, None)],
|
|
'ovenSetpoint': [
|
|
Map('ovenSetpoint', "Oven Set Point", None, None)],
|
|
'powerMeter': [
|
|
Map('power', "Power Meter", 'W', None)],
|
|
'powerSource': [
|
|
Map('powerSource', "Power Source", None, None)],
|
|
'refrigerationSetpoint': [
|
|
Map('refrigerationSetpoint', "Refrigeration Setpoint", TEMP_CELSIUS,
|
|
DEVICE_CLASS_TEMPERATURE)],
|
|
'relativeHumidityMeasurement': [
|
|
Map('humidity', "Relative Humidity Measurement", '%',
|
|
DEVICE_CLASS_HUMIDITY)],
|
|
'robotCleanerCleaningMode': [
|
|
Map('robotCleanerCleaningMode', "Robot Cleaner Cleaning Mode",
|
|
None, None)],
|
|
'robotCleanerMovement': [
|
|
Map('robotCleanerMovement', "Robot Cleaner Movement", None, None)],
|
|
'robotCleanerTurboMode': [
|
|
Map('robotCleanerTurboMode', "Robot Cleaner Turbo Mode", None, None)],
|
|
'signalStrength': [
|
|
Map('lqi', "LQI Signal Strength", None, None),
|
|
Map('rssi', "RSSI Signal Strength", None, None)],
|
|
'smokeDetector': [
|
|
Map('smoke', "Smoke Detector", None, None)],
|
|
'temperatureMeasurement': [
|
|
Map('temperature', "Temperature Measurement", TEMP_CELSIUS,
|
|
DEVICE_CLASS_TEMPERATURE)],
|
|
'thermostatCoolingSetpoint': [
|
|
Map('coolingSetpoint', "Thermostat Cooling Setpoint", TEMP_CELSIUS,
|
|
DEVICE_CLASS_TEMPERATURE)],
|
|
'thermostatFanMode': [
|
|
Map('thermostatFanMode', "Thermostat Fan Mode", None, None)],
|
|
'thermostatHeatingSetpoint': [
|
|
Map('heatingSetpoint', "Thermostat Heating Setpoint", TEMP_CELSIUS,
|
|
DEVICE_CLASS_TEMPERATURE)],
|
|
'thermostatMode': [
|
|
Map('thermostatMode', "Thermostat Mode", None, None)],
|
|
'thermostatOperatingState': [
|
|
Map('thermostatOperatingState', "Thermostat Operating State",
|
|
None, None)],
|
|
'thermostatSetpoint': [
|
|
Map('thermostatSetpoint', "Thermostat Setpoint", TEMP_CELSIUS,
|
|
DEVICE_CLASS_TEMPERATURE)],
|
|
'tvChannel': [
|
|
Map('tvChannel', "Tv Channel", None, None)],
|
|
'tvocMeasurement': [
|
|
Map('tvocLevel', "Tvoc Measurement", 'ppm', None)],
|
|
'ultravioletIndex': [
|
|
Map('ultravioletIndex', "Ultraviolet Index", None, None)],
|
|
'voltageMeasurement': [
|
|
Map('voltage', "Voltage Measurement", 'V', None)],
|
|
'washerMode': [
|
|
Map('washerMode', "Washer Mode", None, None)],
|
|
'washerOperatingState': [
|
|
Map('machineState', "Washer Machine State", None, None),
|
|
Map('washerJobState', "Washer Job State", None, None),
|
|
Map('completionTime', "Washer Completion Time", None,
|
|
DEVICE_CLASS_TIMESTAMP)],
|
|
'windowShade': [
|
|
Map('windowShade', 'Window Shade', None, None)]
|
|
}
|
|
|
|
UNITS = {
|
|
'C': TEMP_CELSIUS,
|
|
'F': TEMP_FAHRENHEIT
|
|
}
|
|
|
|
|
|
async def async_setup_platform(
|
|
hass, config, async_add_entities, discovery_info=None):
|
|
"""Platform uses config entry setup."""
|
|
pass
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
"""Add binary sensors for a config entry."""
|
|
broker = hass.data[DOMAIN][DATA_BROKERS][config_entry.entry_id]
|
|
sensors = []
|
|
for device in broker.devices.values():
|
|
for capability, maps in CAPABILITY_TO_SENSORS.items():
|
|
if capability in device.capabilities:
|
|
sensors.extend([
|
|
SmartThingsSensor(
|
|
device, m.attribute, m.name, m.default_unit,
|
|
m.device_class)
|
|
for m in maps])
|
|
async_add_entities(sensors)
|
|
|
|
|
|
class SmartThingsSensor(SmartThingsEntity):
|
|
"""Define a SmartThings Binary Sensor."""
|
|
|
|
def __init__(self, device, attribute: str, name: str,
|
|
default_unit: str, device_class: str):
|
|
"""Init the class."""
|
|
super().__init__(device)
|
|
self._attribute = attribute
|
|
self._name = name
|
|
self._device_class = device_class
|
|
self._default_unit = default_unit
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
"""Return the name of the binary sensor."""
|
|
return '{} {}'.format(self._device.label, self._name)
|
|
|
|
@property
|
|
def unique_id(self) -> str:
|
|
"""Return a unique ID."""
|
|
return '{}.{}'.format(self._device.device_id, self._attribute)
|
|
|
|
@property
|
|
def state(self):
|
|
"""Return the state of the sensor."""
|
|
return self._device.status.attributes[self._attribute].value
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return the device class of the sensor."""
|
|
return self._device_class
|
|
|
|
@property
|
|
def unit_of_measurement(self):
|
|
"""Return the unit this state is expressed in."""
|
|
unit = self._device.status.attributes[self._attribute].unit
|
|
return UNITS.get(unit, unit) if unit else self._default_unit
|