From ff7c1182b3ed1bcd040d384b21f05fc12335ff35 Mon Sep 17 00:00:00 2001 From: Will Hughes Date: Wed, 16 Jan 2019 10:22:17 +1300 Subject: [PATCH] Clarify Lifx documentation (#8036) * Make it clearer that multiple `server`/`broadcast` blocks are supported * Note that `broadcast` can be set to the unicast address of a bulb --- source/_components/lifx.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/_components/lifx.markdown b/source/_components/lifx.markdown index a630595c4dd..65cd60bfc75 100644 --- a/source/_components/lifx.markdown +++ b/source/_components/lifx.markdown @@ -111,14 +111,14 @@ Run an effect that does nothing, thereby stopping any other effect that might be ## {% linkable_title Advanced configuration %} -There are some manual configuration options available. These should only be needed if you have more than one network interface and automatic configuration does not find your LIFX devices. +There are some manual configuration options available. These are only needed with unusual network setups where automatic configuration does not find your LIFX devices. ```yaml # Example configuration.yaml entry lifx: light: - server: IP_ADDRESS - broadcast: IP_ADDRESS + - server: IP_ADDRESS + broadcast: IP_ADDRESS ``` {% configuration %} @@ -127,7 +127,7 @@ server: required: false type: string broadcast: - description: The broadcast address for discovering lights. + description: The broadcast address for discovering lights. Can also set this to the IP address of a bulb to skip discovery. required: false type: string {% endconfiguration %}