core/homeassistant/components/binary_sensor/nest.py

56 lines
1.7 KiB
Python
Raw Normal View History

2016-01-14 17:48:24 +00:00
"""
homeassistant.components.binary.nest
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Support for Nest Thermostat Binary Sensors.
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/sensor.nest/
"""
import logging
import socket
import homeassistant.components.nest as nest
2016-01-14 21:17:28 +00:00
from homeassistant.components.sensor.nest import NestSensor
2016-01-14 17:48:24 +00:00
BINARY_TYPES = ['fan',
'hvac_ac_state',
'hvac_aux_heater_state',
'hvac_heat_x2_state',
'hvac_heat_x3_state',
'hvac_alt_heat_state',
'hvac_alt_heat_x2_state',
'hvac_emer_heat_state',
'online']
2016-01-14 21:19:35 +00:00
2016-01-14 17:48:24 +00:00
def setup_platform(hass, config, add_devices, discovery_info=None):
2016-01-14 18:37:17 +00:00
"Setup nest binary sensors from config file"
2016-01-14 21:17:28 +00:00
2016-01-14 17:48:24 +00:00
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 BINARY_TYPES:
2016-01-14 21:19:35 +00:00
add_devices([NestBinarySensor(structure,
2016-01-14 21:17:28 +00:00
device,
variable)])
2016-01-14 17:48:24 +00:00
else:
2016-01-14 21:17:28 +00:00
logger.error('Nest sensor type: "%s" does not exist',
variable)
2016-01-14 17:48:24 +00:00
except socket.error:
logger.error(
"Connection error logging into the nest web service."
)
2016-01-14 21:19:35 +00:00
2016-01-14 17:48:24 +00:00
class NestBinarySensor(NestSensor):
""" Represents a Nst Binary sensor. """
@property
2016-01-14 21:17:28 +00:00
def is_on(self):
2016-01-14 21:19:35 +00:00
"Returns is the binary sensor is on or off"
2016-01-14 21:17:28 +00:00
return bool(getattr(self.device, self.variable))