Skip to content

Commit b5dbc78

Browse files
rubenverhoefamelchio
authored andcommitted
Added 1ch MiLight dimmer support (home-assistant#4718)
* Added 1ch MiLight dimmer support. * There are now 16 groups possible, and the dimmer is only supported by V6
1 parent 7bf56b0 commit b5dbc78

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

source/_components/light.limitlessled.markdown

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ha_release: pre 0.7
1818

1919
### {% linkable_title Setup %}
2020

21-
Before configuring Home Assistant, make sure you can control your bulbs or LEDs with the MiLight mobile application. Discover your bridge(s) IP address. You can do this via your router or a mobile application like Fing ([android](https://play.google.com/store/apps/details?id=com.overlook.android.fing&hl=en) or [iTunes](https://itunes.apple.com/us/app/fing-network-scanner/id430921107?mt=8)). Keep in mind that LimitlessLED bulbs are controlled via groups. You can not control an individual bulb via the bridge, unless it is in a group by itself. Note that you can assign an `rgbw`, `rgbww` and `white` group to the same group number, effectively allowing 12 groups (4 `rgbww`, 4 `rgbw` and 4 `white`) per bridge.
21+
Before configuring Home Assistant, make sure you can control your bulbs or LEDs with the MiLight mobile application. Discover your bridge(s) IP address. You can do this via your router or a mobile application like Fing ([android](https://play.google.com/store/apps/details?id=com.overlook.android.fing&hl=en) or [iTunes](https://itunes.apple.com/us/app/fing-network-scanner/id430921107?mt=8)). Keep in mind that LimitlessLED bulbs are controlled via groups. You can not control an individual bulb via the bridge, unless it is in a group by itself. Note that you can assign an `rgbw`, `rgbww`, `white` and `dimmer` group to the same group number, effectively allowing 16 groups (4 `rgbww`, 4 `rgbw`, 4 `white` and 4 `dimmer`) per bridge.
2222

2323
To add `limitlessled` to your installation, add the following to your `configuration.yaml` file:
2424

@@ -38,6 +38,9 @@ light:
3838
type: rgbw
3939
name: Kitchen
4040
fade: on
41+
- number: 4
42+
type: dimmer
43+
name: Livingroom
4144
- host: 192.168.1.11
4245
groups:
4346
- number: 1
@@ -56,7 +59,7 @@ Configuration variables:
5659
- **groups** array (*Required*): The list of available groups.
5760
- **number** (*Required*): Group number (`1`-`4`). Corresponds to the group number on the remote. These numbers may overlap only if the type is different.
5861
- **name** (*Required*): Any name you'd like. Must be unique among all configured groups.
59-
- **type** (*Optional*): Type of group. Choose either `rgbww`, `rgbw`, `white`, or `bridge-led`. `rgbw` is the default if you don't specify this entry. Use `bridge-led` to control the built-in LED of newer WiFi bridges.
62+
- **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.
6063
- **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.
6164

6265
### {% linkable_title Properties %}
@@ -74,6 +77,9 @@ Refer to the [light]({{site_root}}/components/light/) documentation for general
7477
- When using a legacy WiFi bridge (before v6), you can observe on the MiLight mobile application, you can not select a specific brightness or temperature - you can only step each property up or down. There is no indication of which step you are on. This restriction, combined with the unreliable nature of LimitlessLED transmissions, means that setting white bulb properties is done on a best-effort basis. The only very reliable settings are the minimum and maximum of each property.
7578
- *Temperature*: Wifi bridge v6 supports 101 temperature steps; older versions only 10.
7679
- *Brightness*: Wifi bridge v6 supports 101 brightness steps; older versions only 10.
80+
- **Dimmer** (Only supported on v6 bridges)
81+
- This type is for a single color LED dimmer like the 1CH MiLight dimmer module or similar. This type is only supported by the version 6 Wifi bridges.
82+
- *Brightness*: Wifi bridge v6 supports 101 brightness steps.
7783
- **Transitions**
7884
- If a transition time is set, the group will transition between the current settings and the target settings for the duration specified. Transitions from or to white are not possible - the color will change immediately.
7985

0 commit comments

Comments
 (0)