Minor changes

This commit is contained in:
Fabian Affolter 2018-10-13 09:59:24 +02:00
parent 99131191de
commit 642ebe85b6
No known key found for this signature in database
GPG Key ID: E23CD2DD36A4397F

View File

@ -16,6 +16,8 @@ ha_iot_class: "Local Polling"
   
The `synology` camera platform allows you to watch the live streams of your [Synology](https://www.synology.com/) Surveillance Station based IP cameras in Home Assistant. The `synology` camera platform allows you to watch the live streams of your [Synology](https://www.synology.com/) Surveillance Station based IP cameras in Home Assistant.
## {% linkable_title Configuration %}
To enable your Surveillance Station cameras in your installation, add the following to your `configuration.yaml` file: To enable your Surveillance Station cameras in your installation, add the following to your `configuration.yaml` file:
```yaml ```yaml
@ -29,20 +31,20 @@ camera:
{% configuration %} {% configuration %}
name: name:
description: A name for this synology camera component. description: A name for this Synology camera.
required: false required: false
default: Synology Camera default: Synology Camera
type: string type: string
url: url:
description: The URL to your synology, including port. description: The URL to your Synology, including port.
required: true required: true
type: string type: string
username: username:
description: The username for accessing surveillance station. description: The username for accessing Surveillance Station.
required: true required: true
type: string type: string
password: password:
description: The password for accessing surveillance station. description: The password for accessing Surveillance Station.
required: true required: true
type: string type: string
timeout: timeout:
@ -51,17 +53,19 @@ timeout:
default: 5 default: 5
type: integer type: integer
whitelist: whitelist:
description: A list of which cameras you want to add, the names must be the same as in Surveillance Station. If omitted all cameras are added. description: A list of which cameras you want to add, the names must be the same as in Surveillance Station. If omitted all cameras are added.
required: false required: false
type: list type: list
verify_ssl: verify_ssl:
description: True to require a valid certificate, False to disable certificate checking. description: Verify SSL/TLS certificate for HTTPS request.
required: false required: false
default: true default: true
type: boolean type: boolean
{% endconfiguration %} {% endconfiguration %}
A full sample configuration for the `synology` platform is shown below: ## {% linkable_title Full example %}
A full sample configuration for the `synology` camera platform is shown below:
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
@ -75,5 +79,5 @@ camera:
``` ```
<p class='note'> <p class='note'>
Most users will need to set `verify_ssl` to false unless they have installed a valid SSL certificate in place of the built in self-signed certificate. Most users will need to set `verify_ssl` to false unless they have installed a valid SSL/TLS certificate in place of the built in self-signed certificate.
</p> </p>