From c167f59ccdd342e7e29b9571a3f440d2c4851b97 Mon Sep 17 00:00:00 2001 From: Benjamin Auquite Date: Mon, 10 Apr 2023 06:09:14 -0500 Subject: [PATCH] Update docs --- custom_components/adaptive_lighting/const.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/custom_components/adaptive_lighting/const.py b/custom_components/adaptive_lighting/const.py index 51e76bbf..15d1487b 100644 --- a/custom_components/adaptive_lighting/const.py +++ b/custom_components/adaptive_lighting/const.py @@ -184,10 +184,11 @@ DOCS[CONF_AUTORESET_CONTROL] = ( CONF_WATCHED_LIGHTS, DEFAULT_WATCHED_LIGHTS = "watched_lights", {} DOCS[CONF_WATCHED_LIGHTS] = ( - "Use this dictionary of lights to check for manually controlled events " + "Use this dictionary of lights to check for manually controlled events" " in addition to the main lights 🌟" - " Example: {light.watch_light: light.main_light} will fire manually controlled events to " - " light.main_light" + " Requires `alt_detect_method` to be True." + " Example: `watched_lights: {light.watch_light: light.main_light}` will fire" + " manually controlled events to `light.main_light`" ) SLEEP_MODE_SWITCH = "sleep_mode_switch"