Update Raincloud component configuration (#6908)

This commit is contained in:
Klaas Schoute 2018-10-17 23:27:01 +02:00 committed by Fabian Affolter
parent 4134ce26a9
commit 29bbbf64e7
2 changed files with 28 additions and 12 deletions

View File

@ -25,8 +25,15 @@ binary_sensor:
- platform: raincloud
```
Configuration variables:
- **monitored_conditions** array (*Optional*): Conditions to display in the frontend. If not specified, all conditions below will be enabled by default. The following conditions can be monitored.
- **is_watering**: Return if is currently watering per zone.
- **status**: Return status from the Melnor RainCloud Controller and Melnor RainCloud Faucet.
{% configuration %}
monitored_conditions:
description: Conditions to display in the frontend. The following conditions can be monitored.
required: false
type: list
default: If not specified,, all conditions below will be enabled
keys:
is_watering:
description: Return if is currently watering per zone.
status:
description: Return status from the Melnor RainCloud Controller and Melnor RainCloud Faucet.
{% endconfiguration %}

View File

@ -25,10 +25,19 @@ sensor:
- platform: raincloud
```
Configuration variables:
- **monitored_conditions** array (*Optional*): Conditions to display in the frontend. If not specified, all conditions below will be enabled by default. The following conditions can be monitored.
- **battery**: Return the battery level the Melnor RainCloud faucet.
- **next_cycle**: Return the next schedulle watering cycle per zone.
- **rain_delay**: Return the number of days the automatic watering will be delayed due to raining per zone.
- **watering_time**: Return the watering remaining minutes per zone.
{% configuration %}
monitored_conditions:
description: Conditions to display in the frontend. The following conditions can be monitored.
required: false
default: If not specified, all conditions below will be enabled.
type: list
keys:
battery:
description: Return the battery level the Melnor RainCloud faucet.
next_cycle:
description: Return the next schedulle watering cycle per zone.
rain_delay:
description: Return the number of days the automatic watering will be delayed due to raining per zone.
watering_time:
description: Return the watering remaining minutes per zone.
{% endconfiguration %}