From f95e3b3c2748dc388efae68e15d031175df01fc9 Mon Sep 17 00:00:00 2001 From: William Scanlon Date: Fri, 19 Feb 2016 13:55:27 -0500 Subject: [PATCH 1/2] Added doc for Nest weather sensors --- .../_components/sensor.nest_weather.markdown | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 source/_components/sensor.nest_weather.markdown diff --git a/source/_components/sensor.nest_weather.markdown b/source/_components/sensor.nest_weather.markdown new file mode 100644 index 00000000000..ea8a24ce6c9 --- /dev/null +++ b/source/_components/sensor.nest_weather.markdown @@ -0,0 +1,39 @@ +--- +layout: page +title: "Nest Weather Sensor" +description: "Instructions how to integrate Nest sensors within Home Assistant." +date: 2016-01-13 19:59 +sidebar: true +comments: false +sharing: true +footer: true +logo: nest_thermostat.png +ha_category: Weather +--- + + +The `nest` weather sensor platform let you monitor current weather conditions based on the location of your [Nest](https://nest.com) thermostat. + +To set it up, add the following information to your `configuration.yaml` file: + +```yaml +sensor: + platform: nest + monitored_conditions: + - 'weather_temperature' + - 'weather_humidity' + - 'weather_condition' + - 'wind_speed' + - 'wind_direction' +``` + +Configuration variables: + +- **monitored_conditions** array (*Required*): States to monitor. + - 'weather_temperature' + - 'weather_humidity' + - 'weather_condition' + - 'wind_speed' + - 'wind_direction' + +

You must have the [Nest component](/components/nest/) configured to use this sensor.

From 9326d55eba4d1c5c48658b318bc6109f651965eb Mon Sep 17 00:00:00 2001 From: William Scanlon Date: Fri, 19 Feb 2016 16:17:48 -0500 Subject: [PATCH 2/2] Added ha_iot_class --- source/_components/sensor.nest_weather.markdown | 1 + 1 file changed, 1 insertion(+) diff --git a/source/_components/sensor.nest_weather.markdown b/source/_components/sensor.nest_weather.markdown index ea8a24ce6c9..35617f8f0d4 100644 --- a/source/_components/sensor.nest_weather.markdown +++ b/source/_components/sensor.nest_weather.markdown @@ -9,6 +9,7 @@ sharing: true footer: true logo: nest_thermostat.png ha_category: Weather +ha_iot_class: "Cloud Poll" ---