Update Bloomsky component configuration variable (#6850)

This commit is contained in:
Klaas Schoute 2018-10-16 18:59:14 +02:00 committed by Fabian Affolter
parent 487c4ab95b
commit 9d25507dd6
2 changed files with 30 additions and 15 deletions

View File

@ -30,8 +30,14 @@ binary_sensor:
- Rain
```
Configuration variables:
- **monitored_conditions** array (*Required*): The sensors that you wish to monitor on all of your devices. Select from these options:
- Night
- Rain
{% configuration %}
monitored_conditions:
description: "The sensors that you wish to monitor on all of your devices. Select from these options:"
required: true
type: list
keys:
night:
description: Night
rain:
description: Rain
{% endconfiguration %}

View File

@ -33,15 +33,24 @@ sensor:
- Voltage
```
Configuration variables:
- **monitored_conditions** array (*Required*): The sensors that you wish to monitor on all of your devices. Select from these options:
- Humidity
- Luminance
- Pressure
- Temperature
- UVIndex
- Voltage
{% configuration %}
monitored_conditions:
description: "The sensors that you wish to monitor on all of your devices. Select from these options:"
required: true
type: list
keys:
humidity:
description: Humidity
luminance:
description: Luminance
pressure:
description: Pressure
temperature:
description: Temperature
uvindex:
description: UVIndex
voltage:
description: Voltage
{% endconfiguration %}
More conditions are available using the [BloomSky binary sensor](/components/binary_sensor.bloomsky) component.