Fix skybell configuration (#6743)

* Fix skybell configuration

* Fix type

* Fix type
This commit is contained in:
cgtobi 2018-10-13 13:25:50 +02:00 committed by Franck Nijhof
parent aa8b39736e
commit cd3d7d70aa
2 changed files with 20 additions and 9 deletions

View File

@ -28,8 +28,14 @@ binary_sensor:
- motion
```
Configuration variables:
- **monitored_conditions** array (*Required*): Conditions to display in the frontend. The following conditions can be monitored.
- **button**: Return a boolean value when the doorbell button was pressed.
- **motion**: Return a boolean value when movement was detected by the Skybell doorbell.
{% configuration %}
monitored_conditions:
type: list
required: true
description: Conditions to display in the frontend. The following conditions can be monitored.
keys:
button:
description: Returns whether the doorbell button was pressed.
motion:
description: Returns whether movement was detected by the Skybell doorbell.
{% endconfiguration %}

View File

@ -27,7 +27,12 @@ sensor:
- chime_level
```
Configuration variables:
- **monitored_conditions** array (*Required*): Conditions to display in the frontend. The following conditions can be monitored.
- **chime_level**: Return a value between 0-3, indicating no chime, low, medium, and high respectively.
{% configuration %}
monitored_conditions:
type: list
required: true
description: Conditions to display in the frontend. The following conditions can be monitored.
keys:
chime_level:
description: Return a value between 0-3, indicating no chime, low, medium, and high respectively.
{% endconfiguration %}