From e9a2e155e569714b741ddff6e5d446e94c931cbf Mon Sep 17 00:00:00 2001 From: hulkhaugen Date: Wed, 14 Nov 2018 10:52:55 +0100 Subject: [PATCH] Added "monitored_conditions" (#7494) Added `monitored_conditions` to configure additional functionality beneath `binary_sensor` and `sensor` key within the `openuv` section of the `configuration.yaml` file. Without it, you'll end up with a "expected a dictionary for dictionary value @ data..."-error --- source/_components/openuv.markdown | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/source/_components/openuv.markdown b/source/_components/openuv.markdown index 9da2251ce68..4366222a34b 100644 --- a/source/_components/openuv.markdown +++ b/source/_components/openuv.markdown @@ -98,18 +98,20 @@ To configure additional functionality, add configuration options beneath a `bina openuv: api_key: YOUR_OPENUV_API_KEY binary_sensors: - - uv_protection_window + monitored_conditions: + - uv_protection_window sensors: - - current_ozone_level - - current_uv_index - - current_uv_level - - max_uv_index - - safe_exposure_time_type_1 - - safe_exposure_time_type_2 - - safe_exposure_time_type_3 - - safe_exposure_time_type_4 - - safe_exposure_time_type_5 - - safe_exposure_time_type_6 + monitored_conditions: + - current_ozone_level + - current_uv_index + - current_uv_level + - max_uv_index + - safe_exposure_time_type_1 + - safe_exposure_time_type_2 + - safe_exposure_time_type_3 + - safe_exposure_time_type_4 + - safe_exposure_time_type_5 + - safe_exposure_time_type_6 ```