Skip to content

Commit

Permalink
Update LED2109G6.md (#3344)
Browse files Browse the repository at this point in the history
  • Loading branch information
Manni51 authored Dec 21, 2024
1 parent 0a54af5 commit 0fbbd3f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/devices/LED2109G6.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pageClass: device-page
| Model | LED2109G6 |
| Vendor | [IKEA](/supported-devices/#v=IKEA) |
| Description | TRADFRI bulb E26/E27, color/white spectrum, globe, opal, 800/806/810 lm |
| Exposes | light (state, brightness, color_temp, color_temp_startup, color_xy, level_config), effect, power_on_behavior, color_options, identify, linkquality |
| Exposes | light (state, brightness, color_hs, color_temp, color_temp_startup, color_xy, level_config), effect, power_on_behavior, color_options, identify, linkquality |
| Picture | ![IKEA LED2109G6](https://www.zigbee2mqtt.io/images/devices/LED2109G6.png) |


Expand Down Expand Up @@ -51,7 +51,7 @@ This device supports OTA updates, for more information see [OTA updates](../guid
## Exposes

### Light
This light supports the following features: `state`, `brightness`, `color_temp`, `color_temp_startup`, `color_xy`, `level_config`.
This light supports the following features: `state`, `brightness`, `color_hs`, `color_temp`, `color_temp_startup`, `color_xy`, `level_config`.
- `state`: To control the state publish a message to topic `zigbee2mqtt/FRIENDLY_NAME/set` with payload `{"state": "ON"}`, `{"state": "OFF"}` or `{"state": "TOGGLE"}`. To read the state send a message to `zigbee2mqtt/FRIENDLY_NAME/get` with payload `{"state": ""}`.
- `brightness`: To control the brightness publish a message to topic `zigbee2mqtt/FRIENDLY_NAME/set` with payload `{"brightness": VALUE}` where `VALUE` is a number between `0` and `254`. To read the brightness send a message to `zigbee2mqtt/FRIENDLY_NAME/get` with payload `{"brightness": ""}`.
- `color_temp`: To control the color temperature (in reciprocal megakelvin a.k.a. mired scale) publish a message to topic `zigbee2mqtt/FRIENDLY_NAME/set` with payload `{"color_temp": VALUE}` where `VALUE` is a number between `250` and `454`, the higher the warmer the color. To read the color temperature send a message to `zigbee2mqtt/FRIENDLY_NAME/get` with payload `{"color_temp": ""}`. Besides the numeric values the following values are accepted: `coolest`, `cool`, `neutral`, `warm`, `warmest`.
Expand All @@ -60,6 +60,8 @@ This light supports the following features: `state`, `brightness`, `color_temp`,
- `{"color": {"r": R, "g": G, "b": B}}` e.g. `{"color":{"r":46,"g":102,"b":150}}`
- `{"color": {"rgb": "R,G,B"}}` e.g. `{"color":{"rgb":"46,102,150"}}`
- `{"color": {"hex": HEX}}` e.g. `{"color":{"hex":"#547CFF"}}`
- `color_hs`: To control the HS color publish a message to topic `zigbee2mqtt/FRIENDLY_NAME/set` `{"color": {"hue": HUE_VALUE, "saturation": SATURATION_VALUE}}` (e.g. `{"color":{"hue":12,"saturation":96}}`). To read the HS Color send a message to `zigbee2mqtt/FRIENDLY_NAME/get` with payload `{"color":{"hue":"","saturation":""}}`.


#### On with timed off
When setting the state to ON, it might be possible to specify an automatic shutoff after a certain amount of time. To do this add an additional property `on_time` to the payload which is the time in seconds the state should remain on.
Expand Down

0 comments on commit 0fbbd3f

Please sign in to comment.