From 0122c1ca92d439435750eabd9c59b9112d7388ad Mon Sep 17 00:00:00 2001 From: Fredrik Baberg Date: Tue, 2 Oct 2018 10:44:39 +0200 Subject: [PATCH] Update to hue configuration syntax (#6419) --- source/_components/hue.markdown | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/source/_components/hue.markdown b/source/_components/hue.markdown index c4b2cc37b6c..d9832903b1f 100644 --- a/source/_components/hue.markdown +++ b/source/_components/hue.markdown @@ -33,12 +33,24 @@ hue: - host: DEVICE_IP_ADDRESS ``` -Configuration variables: - -- **host** (*Required*): The IP address of the device, eg. 192.168.1.10. Required if not using the `discovery` component to discover Hue bridges. -- **allow_unreachable** (*Optional*): (true/false) This will allow unreachable bulbs to report their state correctly. -- **filename** (*Optional*): Make this unique if specifying multiple Hue hubs. -- **allow_hue_groups** (*Optional*): (true/false) Enable this to stop Home Assistant from importing the groups defined on the Hue bridge. +{% configuration %} +host: + description: The IP address of the device, eg. 192.168.1.10. Required if not using the `discovery` component to discover Hue bridges. + required: true + type: string +allow_unreachable: + description: This will allow unreachable bulbs to report their state correctly. + required: false + type: boolean +filename: + description: Make this unique if specifying multiple Hue hubs. + required: false + type: string +allow_hue_groups: + description: Enable this to stop Home Assistant from importing the groups defined on the Hue bridge. + required: false + type: boolean +{% endconfiguration %} ## {% linkable_title Examples %}