From f90b89bc746acb71772e60f287ff626873607802 Mon Sep 17 00:00:00 2001 From: Joe Rocklin Date: Fri, 16 Dec 2016 00:39:59 -0500 Subject: [PATCH] Add nest hvac state (#4810) * Add basic property details for Nest hvac_state * Add the hvac_state sensor * Update requirements and remove trailing whitespace Clean up the multiline docstring Adding a space between summary and description * Removing the hvac_state as a property on the nest climate * Update nest.py --- homeassistant/components/sensor/nest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/sensor/nest.py b/homeassistant/components/sensor/nest.py index b9dde96a98c..f7bbf41cff9 100644 --- a/homeassistant/components/sensor/nest.py +++ b/homeassistant/components/sensor/nest.py @@ -18,7 +18,8 @@ from homeassistant.const import ( DEPENDENCIES = ['nest'] SENSOR_TYPES = ['humidity', - 'operation_mode'] + 'operation_mode', + 'hvac_state'] SENSOR_TYPES_DEPRECATED = ['last_ip', 'local_ip',