home-assistant.io/source/_components/binary_sensor.nest.markdown
tilphousia 5bde64b3a1 Add stage 1 heater state to monitored conditions (#809)
Condition for monitoring Stage 1 heat was missing from the list. Added in line 25.
2016-08-21 09:21:10 +02:00

1.2 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category
layout title description date sidebar comments sharing footer logo ha_category
page Nest Binary Sensor Instructions how to integrate Nest binary sensors within Home Assistant. 2016-01-26 08:00 true false true true nest_thermostat.png Binary Sensor

The nest binary sensor platform let you monitor various states of a thermostat from Nest.

To set it up, add the following information to your configuration.yaml file:

binary_sensor:
  platform: nest
  monitored_conditions:
    - 'fan'
    - 'hvac_ac_state'
    - 'hvac_heater_state'
    - 'hvac_aux_heater_state'
    - 'hvac_heat_x2_state'
    - 'hvac_heat_x3_state'
    - 'hvac_alt_heat_state'
    - 'hvac_alt_heat_x2_state'
    - 'hvac_emer_heat_state'
    - 'online'

Configuration variables:

  • monitored_conditions array (Required): States to monitor.
    • 'fan'
    • 'hvac_ac_state'
    • 'hvac_aux_heater_state'
    • 'hvac_heat_x2_state'
    • 'hvac_heat_x3_state'
    • 'hvac_alt_heat_state'
    • 'hvac_alt_heat_x2_state'
    • 'hvac_emer_heat_state'
    • 'online'

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