From 3fcdcd8e57f8da11041839fc6294c8f23800510b Mon Sep 17 00:00:00 2001 From: Klaas Schoute Date: Tue, 16 Oct 2018 08:49:50 +0200 Subject: [PATCH] Update Raincloud switch component configuration variable (#6838) * Update Raincloud switch component configuration variable * Update links --- source/_components/switch.raincloud.markdown | 30 ++++++++++++++------ 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/source/_components/switch.raincloud.markdown b/source/_components/switch.raincloud.markdown index 2844b924aed..a13f100e08c 100644 --- a/source/_components/switch.raincloud.markdown +++ b/source/_components/switch.raincloud.markdown @@ -13,11 +13,11 @@ ha_release: "0.55" 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 %} -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 # Example configuration.yaml entry @@ -25,9 +25,23 @@ switch: - platform: raincloud ``` -Configuration variables: - -- **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. -- **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. - - **auto_watering**: Toggle the watering scheduled per zone. - - **manual_watering**: Toggle manually the watering per zone. It will inherent the value in minutes specified on the RainCloud hub component. +{% configuration %} +watering_minutes: + description: "Value in minutes to watering your garden via frontend. The values allowed are: 5, 10, 15, 30, 45, 60." + required: false + default: 15 + 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 %}