[miio] add support yeelink.light.colora Yeelight Smart LED Bulb 1SE (#10037)
Closes #9360 Signed-off-by: Marcel Verpaalen <marcel@verpaalen.com>
This commit is contained in:
parent
6f59b178b8
commit
4088241033
|
@ -396,6 +396,7 @@ Currently the miio binding supports more than 260 different models.
|
||||||
| Yeelight LED Bulb (Color) | miio:basic | [yeelink.light.color2](#yeelink-light-color2) | Yes | |
|
| Yeelight LED Bulb (Color) | miio:basic | [yeelink.light.color2](#yeelink-light-color2) | Yes | |
|
||||||
| Mi LED Smart Bulb (White and Color) | miio:basic | [yeelink.light.color3](#yeelink-light-color3) | Yes | |
|
| Mi LED Smart Bulb (White and Color) | miio:basic | [yeelink.light.color3](#yeelink-light-color3) | Yes | |
|
||||||
| Yeelight LED Bulb 1S(Color) | miio:basic | [yeelink.light.color4](#yeelink-light-color4) | Yes | |
|
| Yeelight LED Bulb 1S(Color) | miio:basic | [yeelink.light.color4](#yeelink-light-color4) | Yes | |
|
||||||
|
| Yeelight Smart LED Bulb 1SE (color) | miio:basic | [yeelink.light.colora](#yeelink-light-colora) | Yes | |
|
||||||
| Yeelight LED Bulb (Tunable) | miio:basic | [yeelink.light.ct2](#yeelink-light-ct2) | Yes | |
|
| Yeelight LED Bulb (Tunable) | miio:basic | [yeelink.light.ct2](#yeelink-light-ct2) | Yes | |
|
||||||
| Mi LED Desk Lamp | miio:basic | [yeelink.light.lamp1](#yeelink-light-lamp1) | Yes | |
|
| Mi LED Desk Lamp | miio:basic | [yeelink.light.lamp1](#yeelink-light-lamp1) | Yes | |
|
||||||
| Mi Smart LED Desk Lamp Pro | miio:basic | [yeelink.light.lamp2](#yeelink-light-lamp2) | Yes | |
|
| Mi Smart LED Desk Lamp Pro | miio:basic | [yeelink.light.lamp2](#yeelink-light-lamp2) | Yes | |
|
||||||
|
@ -2960,6 +2961,18 @@ e.g. `openhab:send actionCommand 'upd_timer["1498595904821", "on"]'` would enabl
|
||||||
| rgbColor | Color | RGB Color | |
|
| rgbColor | Color | RGB Color | |
|
||||||
| name | String | Name | |
|
| name | String | Name | |
|
||||||
|
|
||||||
|
### Yeelight Smart LED Bulb 1SE (color) (<a name="yeelink-light-colora">yeelink.light.colora</a>) Channels
|
||||||
|
|
||||||
|
| Channel | Type | Description | Comment |
|
||||||
|
|------------------|---------|-------------------------------------|------------|
|
||||||
|
| power | Switch | Power | |
|
||||||
|
| brightness | Dimmer | Brightness | |
|
||||||
|
| delayoff | Number:Time | Shutdown Timer | |
|
||||||
|
| colorTemperature | Number | Color Temperature | |
|
||||||
|
| colorMode | Number | Color Mode | |
|
||||||
|
| rgbColor | Color | RGB Color | |
|
||||||
|
| name | String | Name | |
|
||||||
|
|
||||||
### Yeelight LED Bulb (Tunable) (<a name="yeelink-light-ct2">yeelink.light.ct2</a>) Channels
|
### Yeelight LED Bulb (Tunable) (<a name="yeelink-light-ct2">yeelink.light.ct2</a>) Channels
|
||||||
|
|
||||||
| Channel | Type | Description | Comment |
|
| Channel | Type | Description | Comment |
|
||||||
|
@ -7454,6 +7467,21 @@ Color rgbColor "RGB Color" (G_light) {channel="miio:basic:light:rgbColor"}
|
||||||
String name "Name" (G_light) {channel="miio:basic:light:name"}
|
String name "Name" (G_light) {channel="miio:basic:light:name"}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Yeelight Smart LED Bulb 1SE (color) (yeelink.light.colora) item file lines
|
||||||
|
|
||||||
|
note: Autogenerated example. Replace the id (light) in the channel with your own. Replace `basic` with `generic` in the thing UID depending on how your thing was discovered.
|
||||||
|
|
||||||
|
```
|
||||||
|
Group G_light "Yeelight Smart LED Bulb 1SE (color)" <status>
|
||||||
|
Switch power "Power" (G_light) {channel="miio:basic:light:power"}
|
||||||
|
Dimmer brightness "Brightness" (G_light) {channel="miio:basic:light:brightness"}
|
||||||
|
Number:Time delayoff "Shutdown Timer" (G_light) {channel="miio:basic:light:delayoff"}
|
||||||
|
Number colorTemperature "Color Temperature" (G_light) {channel="miio:basic:light:colorTemperature"}
|
||||||
|
Number colorMode "Color Mode" (G_light) {channel="miio:basic:light:colorMode"}
|
||||||
|
Color rgbColor "RGB Color" (G_light) {channel="miio:basic:light:rgbColor"}
|
||||||
|
String name "Name" (G_light) {channel="miio:basic:light:name"}
|
||||||
|
```
|
||||||
|
|
||||||
### Yeelight LED Bulb (Tunable) (yeelink.light.ct2) item file lines
|
### Yeelight LED Bulb (Tunable) (yeelink.light.ct2) item file lines
|
||||||
|
|
||||||
note: Autogenerated example. Replace the id (light) in the channel with your own. Replace `basic` with `generic` in the thing UID depending on how your thing was discovered.
|
note: Autogenerated example. Replace the id (light) in the channel with your own. Replace `basic` with `generic` in the thing UID depending on how your thing was discovered.
|
||||||
|
|
|
@ -280,6 +280,7 @@ public enum MiIoDevices {
|
||||||
YEELINK_LIGHT_COLOR2("yeelink.light.color2", "Yeelight LED Bulb (Color)", THING_TYPE_BASIC),
|
YEELINK_LIGHT_COLOR2("yeelink.light.color2", "Yeelight LED Bulb (Color)", THING_TYPE_BASIC),
|
||||||
YEELINK_LIGHT_COLOR3("yeelink.light.color3", "Mi LED Smart Bulb (White and Color)", THING_TYPE_BASIC),
|
YEELINK_LIGHT_COLOR3("yeelink.light.color3", "Mi LED Smart Bulb (White and Color)", THING_TYPE_BASIC),
|
||||||
YEELINK_LIGHT_COLOR4("yeelink.light.color4", "Yeelight LED Bulb 1S(Color)", THING_TYPE_BASIC),
|
YEELINK_LIGHT_COLOR4("yeelink.light.color4", "Yeelight LED Bulb 1S(Color)", THING_TYPE_BASIC),
|
||||||
|
YEELINK_LIGHT_COLORA("yeelink.light.colora", "Yeelight Smart LED Bulb 1SE (color)", THING_TYPE_BASIC),
|
||||||
YEELINK_LIGHT_CT2("yeelink.light.ct2", "Yeelight LED Bulb (Tunable)", THING_TYPE_BASIC),
|
YEELINK_LIGHT_CT2("yeelink.light.ct2", "Yeelight LED Bulb (Tunable)", THING_TYPE_BASIC),
|
||||||
YEELINK_LIGHT_LAMP1("yeelink.light.lamp1", "Mi LED Desk Lamp", THING_TYPE_BASIC),
|
YEELINK_LIGHT_LAMP1("yeelink.light.lamp1", "Mi LED Desk Lamp", THING_TYPE_BASIC),
|
||||||
YEELINK_LIGHT_LAMP2("yeelink.light.lamp2", "Mi Smart LED Desk Lamp Pro", THING_TYPE_BASIC),
|
YEELINK_LIGHT_LAMP2("yeelink.light.lamp2", "Mi Smart LED Desk Lamp Pro", THING_TYPE_BASIC),
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
"yeelink.light.strip2",
|
"yeelink.light.strip2",
|
||||||
"yeelink.light.bslamp1",
|
"yeelink.light.bslamp1",
|
||||||
"yeelink.light.bslamp2",
|
"yeelink.light.bslamp2",
|
||||||
"yeelink.light.bslamp3"
|
"yeelink.light.bslamp3",
|
||||||
|
"yeelink.light.colora"
|
||||||
],
|
],
|
||||||
"maxProperties": 7,
|
"maxProperties": 7,
|
||||||
"channels": [
|
"channels": [
|
||||||
|
|
Loading…
Reference in New Issue