Add ha_release and other minor changes

This commit is contained in:
Fabian Affolter 2016-10-14 18:38:23 +02:00
parent 9a4a358e53
commit 5ebacef2f0
No known key found for this signature in database
GPG Key ID: DDF3D6F44AAB1336

View File

@ -1,50 +1,52 @@
--- ---
layout: page layout: page
title: "Synology Surveillance Station IP Camera" title: "Synology Surveillance Station IP Camera"
description: "Instructions how to integrate Synolog Surveillance Station cameras within Home Assistant." description: "Instructions how to integrate Synolog Surveillance Station cameras within Home Assistant."
date: 2016-10-13 08:01 date: 2016-10-13 08:01
sidebar: true sidebar: true
comments: false comments: false
sharing: true sharing: true
footer: true footer: true
logo: synology.png logo: synology.png
ha_category: Camera ha_category: Camera
--- ha_release: 0.31
  ---
The `synology` platform allows you to watch the live streams of your [Synology](https://www.synology.com/) Surveillance Station based IP cameras in Home Assistant.
 
To enable your Surveillance Station cameras in your installation, add the following to your `configuration.yaml` file: The `synology` platform allows you to watch the live streams of your [Synology](https://www.synology.com/) Surveillance Station based IP cameras in Home Assistant.
```yaml To enable your Surveillance Station cameras in your installation, add the following to your `configuration.yaml` file:
# Minimum configuration.yaml entry
camera: ```yaml
- platform: synology # Minimum configuration.yaml entry
url: SYNOLOGY_URL camera:
username: USERNAME - platform: synology
password: PASSWORD url: SYNOLOGY_URL
``` username: USERNAME
password: PASSWORD
Configuration variables: ```
- **url** (*Required*): The url to your synology, including port. Configuration variables:
- **username** (*Required*): The username for accessing surveillance station.
- **password** (*Required*): The password for accessing surveillance station. - **url** (*Required*): The URL to your synology, including port.
- **whitelist** (*Optional*): A list of which cameras you want to add, the names must be the same as in Surveillance Station. If omited all cameras are added. - **username** (*Required*): The username for accessing surveillance station.
- **verify_ssl** (*Optional*): True to require a valid certificate, False to disable certificate checking. - **password** (*Required*): The password for accessing surveillance station.
- **whitelist** (*Optional*): A list of which cameras you want to add, the names must be the same as in Surveillance Station. If omited all cameras are added.
A full sample configuration for the `synology` platform is shown below: - **verify_ssl** (*Optional*): True to require a valid certificate, False to disable certificate checking. Defaults to `True`.
```yaml A full sample configuration for the `synology` platform is shown below:
# Example configuration.yaml entry
camera: ```yaml
- platform: synology # Example configuration.yaml entry
url: https://192.168.1.120:5001 camera:
username: USERNAME - platform: synology
password: PASSWORD url: https://192.168.1.120:5001
verify_ssl: False username: USERNAME
``` password: PASSWORD
verify_ssl: False
<p class='note'> ```
Most users will need to set valid_ssl to false unless they have installed a valid SSL certificate in place of the built in self signed certificate.
</p> <p class='note'>
Most users will need to set `valid_ssl` to false unless they have installed a valid SSL certificate in place of the built in self-signed certificate.
</p>