From 71c92b4ac410ec8c61876a710f787ebf97e2df0c Mon Sep 17 00:00:00 2001 From: Robby Grossman Date: Sat, 13 Aug 2016 13:32:46 -0400 Subject: [PATCH] Document structure configuration variable for Nest. (#737) --- source/_components/nest.markdown | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/source/_components/nest.markdown b/source/_components/nest.markdown index b6268ff664c..1ec2da8e882 100644 --- a/source/_components/nest.markdown +++ b/source/_components/nest.markdown @@ -24,7 +24,32 @@ thermostat: platform: nest ``` +```yaml +# Example configuration.yaml entry to show only devices at your vacation home +nest: + username: USERNAME + password: PASSWORD + structure: Vacation + +thermostat: + platform: nest +``` + +```yaml +# Example configuration.yaml entry to show only devices at your vacation and primary homes +nest: + username: USERNAME + password: PASSWORD + structure: + - Vacation + - Primary + +thermostat: + platform: nest +``` + Configuration variables: - **username** (*Required*): Your Nest username. - **password** (*Required*): Your Nest password. +- **structure** (*Optional*): The structure or structures you would like to include devices from. If not specified, this will include all structures in your Nest account. \ No newline at end of file