2019-06-27 20:10:56 -07:00

15 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release, ha_iot_class, redirect_from
layout title description date sidebar comments sharing footer logo ha_category ha_release ha_iot_class redirect_from
page Netatmo Instructions on how to integrate Netatmo integration into Home Assistant. 2016-06-02 08:10 true false true true netatmo.png
Hub
Environment
Weather
Binary Sensor
Sensor
Climate
Camera
0.20 Cloud Polling
/components/binary_sensor.netatmo/
/components/camera.netatmo/
/components/climate.netatmo/
/components/sensor.netatmo/
/components/public_sensor.netatmo/

The netatmo integration platform is the main integration to integrate all Netatmo related platforms.

There is currently support for the following device types within Home Assistant:

{% linkable_title Configuration %}

To enable the Netatmo component, add the following lines to your configuration.yaml:

# Example configuration.yaml entry
netatmo:
  api_key: YOUR_CLIENT_ID
  secret_key: YOUR_CLIENT_SECRET
  username: YOUR_USERNAME
  password: YOUR_PASSWORD

{% configuration %} api_key: description: The client id from your Netatmo app. required: true type: string secret_key: description: The client secret from your Netatmo app. required: true type: integer username: description: Username for the Netatmo account. required: true type: string password: description: Password for the Netatmo account. required: true type: string discovery: description: Whether to discover Netatmo devices. Set it to False, if you want to choose which Netatmo device you want to add. required: false type: boolean default: true webhooks: description: Enable webhooks for instant events of the Welcome and Presence cameras. required: false type: boolean default: false {% endconfiguration %}

{% linkable_title Get API and Secret Key %}

To get your API credentials, you have to declare a new application in the Netatmo Developer Page. Sign in using your username and password from your regular Netatmo account. Click on 'Create an App' at the top of the page.

You have to fill the form, but only two fields are required: Name and Description. It doesn't really matter what you put into those. Just write something that make sense to you. To submit your new app, click on create at the bottom of the form.

That's it. You can copy and paste your new client id and client secret in your Home Assistant configuration file just as described above, in the configuration example.

{% linkable_title Webhooks %}

The Welcome and Presence cameras can send instant events to Home Assistant by using webhooks. There are different types of events, each with slightly different data attached. To enable the webhooks add webhooks: true to your configuration. It is also required to have your camera enabled in Home Assistant. You can do this either by manually setting up the platform or by enabeling discovery.

To be able to receive events from Netatmo, your Home Assistant instance needs to be accessible from the web (Hass.io instructions) and you need to have the base_url configured for the HTTP integration (docs).

Events coming in from Netatmo will be available as events in Home Assistant and are fired as netatmo_*, along with their data. You can use this event to trigger automations.

{% linkable_title Events %}

The following events are available:

  • netatmo_person (Welcome)
  • netatmo_movement (Welcome & Presence)
  • netatmo_human (Presence)
  • netatmo_animal (Presence)
  • netatmo_vehicle (Presence)
  • netatmo_other (Welcome & Presence)

All events (except netatmo_other) contain the following attributes:

Attribute Description
event_type Type of event. E.G. movement.
home_name Name of the home the camera belongs to.
camera_id MAC address of the camera.
message Message describing what has been seen by the camera.

The Presence camera additionally has these attributes:

Attribute Description
snapshot_url URL to a picture of the full frame of the event.
vignette_url URL to a picture cropped down to the area of interest.

The Welcome camera additionally has these attributes for netatmo_person events:

Attribute Description
id ID of the person that has been seen.
name Name of the person that has been seen.
is_known Boolean value if the person is known.
face_url URL to a picture of the person.

The netatmo_other event passes all the webhook data through for all webhook events that don't match any of the above. Set the level of logging for the netatmo integration to debug to view the data in the Home Assistant logs.

{% linkable_title Services (only for webhooks) %}

There are two services to manually add and drop the webhooks. This might be useful if your webhook has been banned and you want to readd the webhook without restarting Home Assistant.

Service Description
addwebhook Subscribe to webhooks. By default the automatically generated URL will be used. But you can pass {"url": "https://yourdomain.com/yourwebhook/"} as service data to the service call if you want to use a manually created webhook trigger. In this case you have to manually process the data that is sent by Netatmo.
dropwebhook Unsubscribe existing webhooks.

{% linkable_title Binary Sensor %}

This integration allows you to get the latest event seen by the camera.

{% linkable_title Binary Sensor 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:

{% 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 %}

# 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

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

{% linkable_title Camera %}

The netatmo camera platform is consuming the information provided by a Netatmo camera. This integration allows you to view the current photo created by the Camera.

{% linkable_title Camera Advanced configuration %}

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

# Example configuration.yaml entry
camera:
  - platform: netatmo

{% configuration %} home: description: Will display the cameras of this home only. required: false type: string cameras: description: Cameras to use. Multiple entities allowed. required: false type: list keys: camera_name: description: Name of the camera to display. quality: description: Quality of the live stream. ('high', 'medium', 'low' or 'poor') required: false type: string default: high {% endconfiguration %}

If home and cameras are not provided, all cameras will be displayed. For more control over your cameras check the configuration sample below.

# Example configuration.yaml entry
camera:
  platform: netatmo
  home: home_name
  quality: medium
  cameras:
    - camera_name1
    - camera_name2

{% linkable_title Climate %}

The netatmo thermostat platform is consuming the information provided by a Netatmo Smart Thermostat thermostat. This integration allows you to view the current temperature and setpoint.

{% linkable_title Camera Advanced configuration %}

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

# Example configuration.yaml entry
climate:
  - platform: netatmo

{% configuration %} homes: description: Will display the thermostats of the homes listed. required: false type: list keys: name: required: true description: The home name. rooms: description: Rooms to be displayed. Multiple entities allowed. required: false type: [list, string] description: List of the names of the rooms to be displayed. {% endconfiguration %}

If homes and rooms are not provided, all thermostats will be displayed.

# Example configuration.yaml entry
climate:
  platform: netatmo
  homes:
    - name: home1_name
      rooms:
        - room1_name
        - room2_name
    - name: home2_name
      rooms:
        - room3_name
        - room4_name
        - room5_name

{% linkable_title Sensor %}

The netatmo sensor platform is consuming the information provided by a Netatmo Weather Station, a Netatmo Home Coach Netatmo device or the public sensors of others available via the Netatmo API even if you don't own a Netatmo device.

Public sensors have to be set up manually. Currently the following conditions are supported for the public sensors:

  • temperature
  • pressure
  • humidity
  • rain
  • windstrength
  • guststrength

{% linkable_title Advanced sensor 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
sensor:
  # Personal sensors
  - platform: netatmo
    station: STATION_NAME
    modules:
      module_name1:
        - temperature
      module_name2:
        - temperature
        - battery_vp

  # Public sensor
  - platform: netatmo
    areas:
      - lat_ne: 40.719
        lon_ne: -73.735
        lat_sw: 40.552
        lon_sw: -74.105
        monitored_conditions:
          - temperature
          - pressure
          - humidity
          - rain
          - windstrength
          - guststrength

{% configuration %} station: required: false description: The name of the weather station. Needed if several stations are associated with the account. type: string modules: required: false description: Modules to use. Multiple entries allowed. Please check the next section about how to retrieve the module names. type: list keys: module_name: type: list required: true description: Name of the module. keys: temperature: description: Current temperature. co2: description: CO2 concentration in ppm. pressure: description: Pressure in mbar. noise: description: Noise level in dB. humidity: description: "Humidity in %." health_idx: description: "Air health as one of the values Healthy, Fine, Fair, Poor, Unhealthy." rain: description: Estimated rainfall for today in mm. sum_rain_1: description: Rainfall in the last hour in mm. sum_rain_24: description: "Rainfall in mm from 00:00am - 23:59pm." windangle: description: Wind angle windstrength: description: Wind strength gustangle: description: Wind gust angle guststrength: description: Wind gust strength min_temp: description: Min temperature for today max_temp: description: Max temperature for today rf_status: description: "Current radio status per module. (90=low, 60=highest)" wifi_status: description: Wifi status per Base station battery_vp: description: Current battery status per module. battery_percent: description: Percentage of battery remaining per module. areas: description: The list contains one or more areas to add as sensors. required: false type: map keys: lat_ne: description: Latitude of north-eastern corner of area. required: true type: string lon_ne: description: Longitude of north-eastern corner of area. required: true type: string lat_sw: description: Latitude of south-western corner of area. required: true type: string lon_sw: description: Longitude of south-western corner of area. required: true type: string monitored_conditions: description: List of environment conditions to monitor. required: true type: list name: description: Name of the sensor. required: false type: string default: Netatmo Public Data mode: description: "How to calculate the value of the sensor if there are multiple stations reporting data. Accepts max or avg." required: false type: string default: avg {% endconfiguration %}

{% linkable_title Find your modules name %}

You can find your modules name in your online NetAtmo account. These names can be found and changed in parameters. You have to provide these name in your Home Assistant configuration.yaml file.