diff --git a/source/_components/binary_sensor.netatmo.markdown b/source/_components/binary_sensor.netatmo.markdown new file mode 100644 index 00000000000..30a0d4dc6bc --- /dev/null +++ b/source/_components/binary_sensor.netatmo.markdown @@ -0,0 +1,52 @@ +--- +layout: page +title: "Netatmo Binary Sensor" +description: "Instructions how to integrate Netatmo binary sensor into Home Assistant." +date: 2016-09-19 15:10 +sidebar: true +comments: false +sharing: true +footer: true +logo: netatmo.png +ha_category: Binary Sensor +ha_release: 0.31 +--- + +### {% linkable_title Basic Configuration %} + +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. + +To enable the Netatmo binary sensor, you have to set up [netatmo](/components/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](/components/netatmo/) and add the following lines to your `configuration.yaml`: + +```yaml +# Example configuration.yaml entry +binary_sensor: + platform: netatmo + home: home_name + cameras: + - camera_name1 + monitored_conditions: + - Someone known + - Someone unknown + - Motion +``` + +Configuration variables: + +- **home** (*Optional*): Will use the cameras of this home only. +- **cameras** array (*Optional*): Cameras to use. Multiple enties allowed. + - 'camera_name': Name of the camera to display. +- **monitored_conditions** array (*Optional*): List of monitored conditions. + - 'Someone known' + - 'Someone unknown' + - 'Motion' + +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 + +

+[Welcome tags](https://www.netatmo.com/product/security/welcome/tags) are not yet supported, but will be in a next update. +

\ No newline at end of file diff --git a/source/_components/camera.netatmo.markdown b/source/_components/camera.netatmo.markdown index 35edddaa25f..38df6ac90be 100644 --- a/source/_components/camera.netatmo.markdown +++ b/source/_components/camera.netatmo.markdown @@ -12,10 +12,15 @@ ha_category: Camera ha_release: 0.22 --- +### {% linkable_title Basic Configuration %} 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. -To enable the Netatmo camera, you first have to set up [netatmo](/components/netatmo/), and add the following lines to your `configuration.yaml`: +To enable the Netatmo camera, you have to set up [netatmo](/components/netatmo/), this will use discovery to add your camera. + +### {% linkable_title Advanced configuration %} + +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`: ```yaml # Example configuration.yaml entry diff --git a/source/_components/netatmo.markdown b/source/_components/netatmo.markdown index ff6ac53af1b..0908c899cff 100644 --- a/source/_components/netatmo.markdown +++ b/source/_components/netatmo.markdown @@ -32,6 +32,7 @@ Configuration variables: - **secret_key** (*Required*): Your netatmo secret key - **username** (*Required*): Username for the netatmo account. - **password** (*Required*): Password for the netatmo account. +- **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). ### {% linkable_title Get API and Secret Key %}