> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seam.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Google Nest Thermostats

> Guide for using Nest thermostats with Seam

export const DeviceList = ({manufacturers, capabilityName, token = "6c51f0a4-d421-429e-8295-d02271aa4f23"}) => {
  const cdn = "https://cdn.devicedb.seam.co/v/0.0.15/DeviceListByCapability.global.js";
  const close = "</scr" + "ipt>";
  const srcDoc = ['<!doctype html><html><head><meta charset="utf-8">', "<style>html,body{margin:0;padding:0;background:transparent}</style></head><body>", `<script type="module" src="${cdn}">${close}`, `<device-list-by-capability manufacturers="${manufacturers}" capability-name="${capabilityName}" token="${token}"></device-list-by-capability>`, `<script>new ResizeObserver(function(){parent.postMessage({__devicedb:true,height:document.documentElement.scrollHeight},"*")}).observe(document.documentElement)${close}`, "</body></html>"].join("");
  const onRef = iframe => {
    if (!iframe || iframe.dataset.devicedbBound) return;
    iframe.dataset.devicedbBound = "1";
    window.addEventListener("message", event => {
      if (event.source === iframe.contentWindow && event.data && event.data.__devicedb) {
        iframe.style.height = `${event.data.height}px`;
      }
    });
  };
  return <iframe ref={onRef} srcDoc={srcDoc} title="Compatible devices" style={{
    width: "100%",
    minHeight: "320px",
    border: "none"
  }} />;
};

<img src="https://strapi-media-bucket.fly.storage.tigris.dev/sq_nest_b497cdbdc2.svg" alt="Nest logo" width="192" height="192" style={{ width: "192px", height: "192px", objectFit: "contain" }} />

## Overview

Google produces Nest smart thermostats as part of the Google smart home product group. Nest thermostats are designed to lower energy costs through energy efficiency features, such as remote climate monitoring and control, as well as climate setting scheduling. Google also produces an optional Nest Temperature Sensor accessory to prioritize certain rooms.

***

## Supported Devices

<DeviceList manufacturers="nest" capabilityName="can_hvac_heat,can_hvac_cool,can_hvac_fan,can_program_thermostat_weekly_programs" />

This integration supports all [Nest thermostats](https://store.google.com/us/category/nest_thermostats).

For detailed information about the Google Nest devices that Seam supports, see our [Nest Supported Devices page](https://www.seam.co/manufacturers/nest).

***

## Supported Features

We support the following features:

* [Configuring current thermostat settings](/capability-guides/thermostats/configure-current-climate-settings)
* [Creating and managing climate presets](/capability-guides/thermostats/creating-and-managing-climate-presets)
* [Creating and managing thermostat schedules](/capability-guides/thermostats/creating-and-managing-thermostat-schedules)
* [Creating and managing thermostat weekly programs](/capability-guides/thermostats/creating-and-managing-thermostat-programs)
* [Setting and monitoring temperature thresholds](/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)

***

### Device Provider Key

To create a [Connect Webview](/core-concepts/connect-webviews) that enables your users to connect their Nest devices to Seam, include the `google_nest` device provider key in the `accepted_providers` list. For more information, see [Customize the Brands to Display in Your Connect Webviews](/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews).

***

## Setup Instructions

For instructions on connecting Google Nest thermostats to Seam, see the [Google Nest Setup Guide](./google-nest-setup-guide).

***

## Brand-Specific Features

Google Nest thermostats support an eco HVAC mode. To set a Google Nest thermostat to eco mode, use the [`/thermostats/set_hvac_mode`](/api/thermostats/set_hvac_mode) endpoint. For details, see [HVAC Mode](/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) and [Setting the Current HVAC and Fan Mode Settings](/capability-guides/thermostats/configure-current-climate-settings).

***

## Troubleshooting

If you have not yet [obtained Google Commercial Development](/device-and-system-integration-guides/google-nest-thermostats/obtain-google-nest-device-access-and-commercial-development), and your end user attempts to connect a Google Nest thermostat to Seam using a [Connect Webview](/core-concepts/connect-webviews), the Connect Webview displays the following error:

> No access to partner
>
> Information could not be retrieved. Please contact \<Your Company Name> to verify that your account has been properly set up. You may need to add the developer email address as a home member in the Google Home app settings.

Note that, until you obtain Google Commercial Development, you can only connect devices associated directly with your own Google test users' accounts to Seam.

***

## Where to Order

Order Nest thermostats from the Google online store or from Amazon.

<CardGroup cols={2}>
  <Card title="Google Online Store" href="https://store.google.com/us/category/nest_thermostats" img="https://mintcdn.com/seam/d6yLSFlGuXxmvz_6/images/nest-logo.png?fit=max&auto=format&n=d6yLSFlGuXxmvz_6&q=85&s=d6c6ce4ab1c7106503870e70f46a5c15" width="4008" height="3008" data-path="images/nest-logo.png" />

  <Card title="Nest Products on Amazon" href="https://amzn.to/4aaJfus" img="https://mintcdn.com/seam/d6yLSFlGuXxmvz_6/images/nest-on-amazon.png?fit=max&auto=format&n=d6yLSFlGuXxmvz_6&q=85&s=c9bb945793e27458b224c2fd03d37ad0" width="240" height="180" data-path="images/nest-on-amazon.png" />
</CardGroup>

***
