mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-22 16:56:50 +00:00
Update limitlessled light component configuration (#7440)
This commit is contained in:
parent
39a91e1cb0
commit
824dc4eda1
@ -43,7 +43,7 @@ light:
|
||||
- number: 3
|
||||
type: rgbw
|
||||
name: Kitchen
|
||||
fade: on
|
||||
fade: true
|
||||
- number: 4
|
||||
type: dimmer
|
||||
name: Livingroom
|
||||
@ -56,17 +56,50 @@ light:
|
||||
name: Bridge Light
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **bridges** array (*Required*):
|
||||
- **host** (*Required*): IP address of the device, eg. `192.168.1.32`
|
||||
- **version** (*Optional*): Bridge version (default is `6`).
|
||||
- **port** (*Optional*): Bridge port. Defaults to `5987`. For older bridges than `v6` choose `8899`.
|
||||
- **groups** array (*Required*): The list of available groups.
|
||||
- **number** (*Required*): Group number (`1`-`4`). Corresponds to the group number on the remote. These numbers may overlap only if the type is different.
|
||||
- **name** (*Required*): Any name you'd like. Must be unique among all configured groups.
|
||||
- **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.
|
||||
- **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.
|
||||
{% configuration %}
|
||||
bridges:
|
||||
description: A list of bridges.
|
||||
required: true
|
||||
type: list
|
||||
keys:
|
||||
host:
|
||||
description: IP address of the device, e.g., `192.168.1.32`.
|
||||
required: true
|
||||
type: string
|
||||
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 %}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user