home-assistant.io/source/_components/binary_sensor.netatmo.markdown
Jorim Tielemans a52f37c913 Remove empty lines and trailing spaces (#6978)
Add missing titles and empty lines
Fix variable type and missing defaults
2018-10-20 12:55:45 +02:00

2.1 KiB

layout title description date sidebar comments sharing footer logo ha_category ha_release
page Netatmo Binary Sensor Instructions on how to integrate Netatmo binary sensor into Home Assistant. 2016-09-19 15:10 true false true true netatmo.png Binary Sensor 0.31

The netatmo binary sensor platform is consuming the information provided by a Netatmo camera. This component allows you to get the latest event seen by the camera.

{% linkable_title Basic Configuration %}

To enable the Netatmo binary sensor, you have to set up netatmo, this will use discovery to add your binary sensor.

{% linkable_title Advanced configuration %}

If you want to select a specific sensor, set discovery to false for netatmo and add the following lines to your configuration.yaml:

# Example configuration.yaml entry
binary_sensor:
  platform: netatmo
  home: home_name
  timeout: 90
  cameras:
    - camera_name1
  welcome_sensors:
    - Someone known
    - Someone unknown
    - Motion
  presence_sensors:
    - Outdoor motion
    - Outdoor human
    - Outdoor animal
    - Outdoor vehicle

{% configuration %} home: description: Will use the cameras of this home only. required: false type: string timeout: description: > The Welcome/Presence binary sensors will stay on for X seconds after detection. required: false type: integer default: 90 cameras: description: List of cameras entity IDs to display. required: false type: list welcome_sensors: description: > List of monitored conditions. Possible values are 'Someone known', 'Someone unknown' and 'Motion'. required: false type: list presence_sensors: description: > List of monitored conditions. Possible values are 'Outdoor motion', 'Outdoor human', 'Outdoor animal' and 'Outdoor vehicle'. required: false type: list {% endconfiguration %}

If home and cameras is not provided, all cameras will be used. If multiple cameras are available then each monitored conditions will create a specific sensor for each camera