Skip to content

Commit 5ec96be

Browse files
jabesqfabaff
authored andcommitted
Add Documentation for Netatmo binary sensor (home-assistant#964)
* Add Documentation for Netatmo binary sensor * Explicit Basic and Advanced configuration for Netatmo devices Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com>
1 parent b5c7c68 commit 5ec96be

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
layout: page
3+
title: "Netatmo Binary Sensor"
4+
description: "Instructions how to integrate Netatmo binary sensor into Home Assistant."
5+
date: 2016-09-19 15:10
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: netatmo.png
11+
ha_category: Binary Sensor
12+
ha_release: 0.31
13+
---
14+
15+
### {% linkable_title Basic Configuration %}
16+
17+
The `netatmo` binary sensor platform is consuming the information provided by a [Netatmo Welcome](https://www.netatmo.com) camera. This component allows you to get the latest event seen by the camera.
18+
19+
To enable the Netatmo binary sensor, you have to set up [netatmo](/components/netatmo/), this will use discovery to add your binary sensor.
20+
21+
### {% linkable_title Advanced configuration %}
22+
23+
If you want to select a specific sensor, set discovery to False for [netatmo](/components/netatmo/) and add the following lines to your `configuration.yaml`:
24+
25+
```yaml
26+
# Example configuration.yaml entry
27+
binary_sensor:
28+
platform: netatmo
29+
home: home_name
30+
cameras:
31+
- camera_name1
32+
monitored_conditions:
33+
- Someone known
34+
- Someone unknown
35+
- Motion
36+
```
37+
38+
Configuration variables:
39+
40+
- **home** (*Optional*): Will use the cameras of this home only.
41+
- **cameras** array (*Optional*): Cameras to use. Multiple enties allowed.
42+
- 'camera_name': Name of the camera to display.
43+
- **monitored_conditions** array (*Optional*): List of monitored conditions.
44+
- 'Someone known'
45+
- 'Someone unknown'
46+
- 'Motion'
47+
48+
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
49+
50+
<p class='note'>
51+
[Welcome tags](https://www.netatmo.com/product/security/welcome/tags) are not yet supported, but will be in a next update.
52+
</p>

source/_components/camera.netatmo.markdown

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,15 @@ ha_category: Camera
1212
ha_release: 0.22
1313
---
1414

15+
### {% linkable_title Basic Configuration %}
1516

1617
The `netatmo` camera platform is consuming the information provided by a [Netatmo Welcome](https://www.netatmo.com) camera. This component allows you to view the current photo created by the Camera.
1718

18-
To enable the Netatmo camera, you first have to set up [netatmo](/components/netatmo/), and add the following lines to your `configuration.yaml`:
19+
To enable the Netatmo camera, you have to set up [netatmo](/components/netatmo/), this will use discovery to add your camera.
20+
21+
### {% linkable_title Advanced configuration %}
22+
23+
If you want to select a specific camera, set discovery to False for [netatmo](/components/netatmo/) and add the following lines to your `configuration.yaml`:
1924

2025
```yaml
2126
# Example configuration.yaml entry

source/_components/netatmo.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Configuration variables:
3232
- **secret_key** (*Required*): Your netatmo secret key
3333
- **username** (*Required*): Username for the netatmo account.
3434
- **password** (*Required*): Password for the netatmo account.
35+
- **discovery** (*Optional)*: Whether to discover Netatmo devices. Set it to False, if you want to choose which Netatmo device you want to add (default True).
3536
3637
### {% linkable_title Get API and Secret Key %}
3738

0 commit comments

Comments
 (0)