Update Raincloud switch component configuration variable (#6838)

* Update Raincloud switch component configuration variable

* Update links
This commit is contained in:
Klaas Schoute 2018-10-16 08:49:50 +02:00 committed by Fabian Affolter
parent b64ba0dfb6
commit 3fcdcd8e57

View File

@ -13,11 +13,11 @@ ha_release: "0.55"
ha_iot_class: "Cloud Polling" ha_iot_class: "Cloud Polling"
--- ---
To get your [Melnor RainCloud](https://wifiaquatimer.com) binary sensors working within Home Assistant, please follow the instructions for the general [Raincloud component](/components/raincloud). To get your [Melnor RainCloud](https://wifiaquatimer.com) binary sensors working within Home Assistant, please follow the instructions for the general [Raincloud component](/components/raincloud/).
## {% linkable_title Configuration %} ## {% linkable_title Configuration %}
Once you have enabled the [Raincloud component](/components/raincloud), add the following to your `configuration.yaml` file: Once you have enabled the [Raincloud component](/components/raincloud/), add the following to your `configuration.yaml` file:
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
@ -25,9 +25,23 @@ switch:
- platform: raincloud - platform: raincloud
``` ```
Configuration variables: {% configuration %}
watering_minutes:
- **watering_minutes** (*Optional*): Value in minutes to watering your garden via frontend. Defaults to 15. The values allowed are: 5, 10, 15, 30, 45, 60. description: "Value in minutes to watering your garden via frontend. The values allowed are: 5, 10, 15, 30, 45, 60."
- **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. required: false
- **auto_watering**: Toggle the watering scheduled per zone. default: 15
- **manual_watering**: Toggle manually the watering per zone. It will inherent the value in minutes specified on the RainCloud hub component. type: integer
monitored_conditions:
description: Conditions to display in the frontend. If not specified, all conditions below will be enabled by default.
required: false
type: list
keys:
auto_watering:
description: Toggle the watering scheduled per zone.
required: false
type: boolean
manual_watering:
description: Toggle manually the watering per zone. It will inherent the value in minutes specified on the RainCloud hub component.
required: false
type: boolean
{% endconfiguration %}