Update limitlessled light component configuration (#7440)

This commit is contained in:
Klaas Schoute 2018-11-09 09:41:05 +01:00 committed by Fabian Affolter
parent 39a91e1cb0
commit 824dc4eda1

View File

@ -43,7 +43,7 @@ light:
- number: 3 - number: 3
type: rgbw type: rgbw
name: Kitchen name: Kitchen
fade: on fade: true
- number: 4 - number: 4
type: dimmer type: dimmer
name: Livingroom name: Livingroom
@ -56,17 +56,50 @@ light:
name: Bridge Light name: Bridge Light
``` ```
Configuration variables: {% configuration %}
bridges:
- **bridges** array (*Required*): description: A list of bridges.
- **host** (*Required*): IP address of the device, eg. `192.168.1.32` required: true
- **version** (*Optional*): Bridge version (default is `6`). type: list
- **port** (*Optional*): Bridge port. Defaults to `5987`. For older bridges than `v6` choose `8899`. keys:
- **groups** array (*Required*): The list of available groups. host:
- **number** (*Required*): Group number (`1`-`4`). Corresponds to the group number on the remote. These numbers may overlap only if the type is different. description: IP address of the device, e.g., `192.168.1.32`.
- **name** (*Required*): Any name you'd like. Must be unique among all configured groups. required: true
- **type** (*Optional*): Type of group. Choose either `rgbww`, `rgbw`, `white`, `bridge-led` or `dimmer`. `rgbw` is the default if you don't specify this entry. Use `bridge-led` to control the built-in LED of newer WiFi bridges. type: string
- **fade** (*Optional*): Fade behavior. Defaults to `off`. If turned on, the group is faded out before being turned off. This makes for a more pleasing transition at the expense of wall switch usability since the light will turn back on at the lowest brightness if it is power cycled. version:
description: Bridge version.
required: false
default: 6
type: integer
port:
description: Bridge port. For older bridges than `v6` choose `8899`.
required: false
default: 5987
type: integer
groups:
description: The list of available groups.
required: true
type: list
keys:
number:
description: Group number (`1`-`4`). Corresponds to the group number on the remote. These numbers may overlap only if the type is different.
required: true
type: integer
name:
description: Any name you'd like. Must be unique among all configured groups.
required: true
type: string
type:
description: Type of group. Choose either `rgbww`, `rgbw`, `white`, `bridge-led` or `dimmer`. Use `bridge-led` to control the built-in LED of newer WiFi bridges.
required: false
default: rgbw
type: string
fade:
description: Fade behavior. If turned on (true), the group is faded out before being turned off. This makes for a more pleasing transition at the expense of wall switch usability since the light will turn back on at the lowest brightness if it is power cycled.
required: false
default: false
type: boolean
{% endconfiguration %}
### {% linkable_title Night Effect %} ### {% linkable_title Night Effect %}