core/homeassistant/components/sensor/nest.py

138 lines
4.6 KiB
Python
Raw Normal View History

"""
Support for Nest Thermostat Sensors.
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/sensor.nest/
"""
2016-01-14 18:37:17 +00:00
import logging
import socket
2016-02-19 05:27:50 +00:00
import homeassistant.components.nest as nest
2016-01-14 17:48:24 +00:00
from homeassistant.const import TEMP_CELCIUS
2016-02-19 05:27:50 +00:00
from homeassistant.helpers.entity import Entity
DEPENDENCIES = ['nest']
SENSOR_TYPES = ['humidity',
'mode',
'last_ip',
'local_ip',
'last_connection',
'battery_level']
WEATHER_VARIABLES = ['weather_condition', 'weather_temperature',
'weather_humidity',
'wind_speed', 'wind_direction']
JSON_VARIABLE_NAMES = {'weather_humidity': 'humidity',
'weather_temperature': 'temperature',
'weather_condition': 'condition',
'wind_speed': 'kph',
'wind_direction': 'direction'}
SENSOR_UNITS = {'humidity': '%', 'battery_level': 'V',
'kph': 'kph', 'temperature': '°C'}
SENSOR_TEMP_TYPES = ['temperature',
'target',
'away_temperature[0]',
'away_temperature[1]']
2016-01-14 21:19:35 +00:00
def setup_platform(hass, config, add_devices, discovery_info=None):
2016-02-23 05:21:49 +00:00
"""Setup Nest Sensor."""
logger = logging.getLogger(__name__)
try:
for structure in nest.NEST.structures:
for device in structure.devices:
for variable in config['monitored_conditions']:
if variable in SENSOR_TYPES:
2016-01-16 19:56:38 +00:00
add_devices([NestBasicSensor(structure,
device,
variable)])
elif variable in SENSOR_TEMP_TYPES:
2016-01-14 21:17:28 +00:00
add_devices([NestTempSensor(structure,
device,
variable)])
elif variable in WEATHER_VARIABLES:
json_variable = JSON_VARIABLE_NAMES.get(variable, None)
add_devices([NestWeatherSensor(structure,
device,
json_variable)])
else:
2016-01-14 21:17:28 +00:00
logger.error('Nest sensor type: "%s" does not exist',
variable)
except socket.error:
logger.error(
"Connection error logging into the nest web service."
)
2016-01-14 21:17:28 +00:00
class NestSensor(Entity):
2016-02-23 05:21:49 +00:00
"""Represents a Nest sensor."""
def __init__(self, structure, device, variable):
self.structure = structure
self.device = device
self.variable = variable
@property
def name(self):
2016-02-23 05:21:49 +00:00
"""Returns the name of the nest, if any."""
location = self.device.where
name = self.device.name
if location is None:
2016-01-14 21:17:28 +00:00
return "{} {}".format(name, self.variable)
else:
if name == '':
2016-01-14 21:17:28 +00:00
return "{} {}".format(location.capitalize(), self.variable)
else:
2016-01-14 21:17:28 +00:00
return "{}({}){}".format(location.capitalize(),
name,
self.variable)
2016-01-14 21:19:35 +00:00
2016-01-16 19:52:22 +00:00
class NestBasicSensor(NestSensor):
2016-02-23 05:21:49 +00:00
"""Represents a basic Nest sensor with state."""
@property
def state(self):
2016-02-23 05:21:49 +00:00
"""Returns the state of the sensor."""
return getattr(self.device, self.variable)
@property
def unit_of_measurement(self):
2016-02-23 05:21:49 +00:00
"""Unit the value is expressed in."""
return SENSOR_UNITS.get(self.variable, None)
2016-01-14 21:19:35 +00:00
class NestTempSensor(NestSensor):
2016-02-23 05:21:49 +00:00
"""Represents a Nest Temperature sensor."""
@property
def unit_of_measurement(self):
2016-02-23 05:21:49 +00:00
"""Unit the value is expressed in."""
2016-01-14 21:19:35 +00:00
return TEMP_CELCIUS
@property
def state(self):
2016-02-23 05:21:49 +00:00
"""Returns the state of the sensor."""
temp = getattr(self.device, self.variable)
if temp is None:
return None
2016-01-14 21:19:35 +00:00
return round(temp, 1)
class NestWeatherSensor(NestSensor):
2016-02-23 05:21:49 +00:00
"""Represents a basic Nest Weather Conditions sensor."""
@property
def state(self):
2016-02-23 05:21:49 +00:00
"""Returns the state of the sensor."""
if self.variable == 'kph' or self.variable == 'direction':
return getattr(self.structure.weather.current.wind, self.variable)
else:
return getattr(self.structure.weather.current, self.variable)
@property
def unit_of_measurement(self):
2016-02-23 05:21:49 +00:00
"""Unit the value is expressed in."""
return SENSOR_UNITS.get(self.variable, None)