mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-06 19:18:59 +00:00
55 lines
1.2 KiB
Markdown
55 lines
1.2 KiB
Markdown
---
|
|
layout: page
|
|
title: "Nest"
|
|
description: "Instructions how to integrate Nest into Home Assistant."
|
|
date: 2016-01-29 21:57
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: nest_thermostat.png
|
|
ha_category: Hub
|
|
featured: true
|
|
---
|
|
|
|
The Nest component is the main component to integrate all Nest related platforms. Besides this component you will have to setup your thermostat and any connected sensors separately.
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
nest:
|
|
username: USERNAME
|
|
password: PASSWORD
|
|
|
|
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. |