Skip to content

Commit 08176ea

Browse files
limitlessled documentation
1 parent af0fd2a commit 08176ea

File tree

1 file changed

+61
-13
lines changed

1 file changed

+61
-13
lines changed
Lines changed: 61 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,79 @@
11
---
22
layout: page
33
title: "LimitlessLED support"
4-
description: "Instructions how to setup LimitlessLED within Home Assistant."
5-
date: 2015-06-10 22:48
4+
description: "Instructions on how to setup LimitlessLED within Home Assistant."
5+
date: 2015-12-03 13:00
66
sidebar: false
77
comments: false
88
sharing: true
99
footer: true
1010
---
1111

1212
<img src='/images/supported_brands/dialog-information.png' class='brand pull-right' />
13-
The limitlessled can control your [LimitlessLED](http://www.limitlessled.com/) lights from within Home Assistant. The lights are also known as EasyBulb, AppLight, AppLamp, MiLight, LEDme, dekolight or iLight.
13+
`limitlessled` can control your [LimitlessLED](http://www.limitlessled.com/) lights from within Home Assistant. The lights are also known as EasyBulb, AppLight, AppLamp, MiLight, LEDme, dekolight or iLight.
1414

15-
To add limitlessled to your installation, add the following to your `configuration.yaml` file:
15+
### Setup
16+
17+
Before configuring Home Assistant, make sure you can control your bulbs with the Milight mobile application. Discover your bridge(s) IP. 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), [itunes](https://itunes.apple.com/us/app/fing-network-scanner/id430921107?mt=8)). Keep in mind that LimitlessLED bulbs are controlled via groups. You cannot control an individual bulb via the bridge, unless it is in a group by itself. Note that you can assign an `rgbw` and `white` group to the same group number, effectively allowing 8 groups (4 `rgbw` and 4 `white`) per bridge.
18+
19+
To add `limitlessled` to your installation, add the following to your `configuration.yaml` file:
20+
21+
```yaml
22+
light:
23+
platform: limitlessled
24+
bridges:
25+
```
26+
27+
Next, list your bridges and groups. Here's an example. See the next section for a full explanaton of each configuration variable.
1628
1729
```yaml
18-
# Example configuration.yaml entry
1930
light:
2031
platform: limitlessled
21-
host: IP_ADDRESS
22-
group_1_name: Living Room
23-
group_2_name: Bedroom
24-
group_3_name: Office
25-
group_4_name: Kitchen
32+
bridges:
33+
- host: 192.168.1.10
34+
version: 5
35+
port: 8899
36+
groups:
37+
- number: 1
38+
type: rgbw
39+
name: Bedroom
40+
- number: 2
41+
type: white
42+
name: Craft Room
43+
- number: 2
44+
type: rgbw
45+
name: Bathroom
46+
- host: 192.168.1.11
47+
groups:
48+
- number: 1
49+
type: rgbw
50+
name: Living Room & Hall
2651
```
2752
28-
Configuration variables:
53+
### Configuration variables
54+
55+
- **bridges** (*Required*): (list)
56+
- **host** (*Required*): IP address of the device, eg. `192.168.1.32`
57+
- **version**: Bridge version (default is `5`). Don't use if you aren't sure.
58+
- **port**: Bridge port (default is `8899`). Normally not necessary to specify.
59+
- **groups** (*Required*): (list)
60+
- **number** (*Required*): Group number (`1`-`4`). Corresponds to the group number on the remote.
61+
- **name** (*Required*): Any name you'd like. Must be unique among all configured groups.
62+
- **type**: Type of group. Choose either `rgbw` or `white`. `rgbw` is the default if you don't specify.
63+
64+
### Properties
65+
Refer to the [light]({{site_root}}/components/light) documentation for general property usage, but keep in mind the following notes specific to LimitlessLED.
66+
67+
- **RGBW**
68+
- *Color*: There are 256 color possibilities along the LimitlessLED color spectrum. Color properties like saturation and lightness can't be used - only hue. The only exception is white (which may be warm or cold depending on the type of RGBW bulb). If you select a color with saturation or lightness, Home Assistant will calculate the nearest valid LimitlessLED color.
69+
- *Brightness*: There are 25 brightness steps.
70+
- **White**
71+
- As you can observe on the Milight mobile application, you cannot 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.
72+
- *Temperature*: There are 10 temperature steps.
73+
- *Brightness*: There are 10 brightness steps.
74+
- **Transitions**
75+
- 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.
76+
77+
### Initialization & Synchronization
2978

30-
- **host** (*Required*): IP address of the device, eg. 192.168.1.32
31-
- **group_X_name** (*Required*): Name of the group. Multiple entries with a consecutive number.
79+
When starting Home Assistant, your LimitlessLED bulbs will be set to known default values. This ensures a consistent user interface and uninterrupted turning on/off. If you control your LimitlessLED lights via the Milight mobile application or other means while Home Assistant is running, Home Assistant can not track those changes and you may observe unexpected behavior. This is due to a LimitlessLED limitation.

0 commit comments

Comments
 (0)