Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Mar 1, 2024
2 parents 43e0d59 + c54c476 commit db05054
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
16 changes: 14 additions & 2 deletions docs/devices/324131092621.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pageClass: device-page
## Notes

### Battery Type
Uses a CR2450 battery
Uses a CR2450 battery.

### Pairing
Factory reset the Hue dimmer switch by pressing and holding the setup button on the back for 10 seconds.
Expand All @@ -49,7 +49,19 @@ To use the Hue dimmer switch to factory reset a Hue light bulb see
This method also works for Philips Hue Lightstrips, IKEA Trådfri, Sonoff ZBMINI, and Tuya light bulbs.

### Binding
If you want to bind the dimmer to a (Hue) lamp you'll have to *[bind it to the lamp through MQTT](../guide/usage/binding.md)* and unbind it from the coordinator. Use the dimmer as source and a literal `coordinator` as target for that.
By default, the device is bound to the coordinator, but it can also be used to directly control other lights and switches in the network (see [guide on binding](https://www.zigbee2mqtt.io/guide/usage/binding.html)).

As the device is sleeping by default, you will need to wake it up after sending the bind/unbind command by pressing any button.

When endpoint `1` is bound to a light or a group of lights, the behavior is as follows:
| Button | Click | Action | Comment |
|-----|-----|-----|-----|
| On | Single<br>Long | Turn on | Using the `commandOn` command. |
| Brightness up | Single | Step up the brightness | In steps of 30 points (around 12%), using the `commandStep` command with `{"stepmode":0,"stepsize":30,"transtime":9}` payload. |
| Brightness up | Long | Smoothly increase the brightness | In steps of 56 points (around 22%), using the `commandStep` command with `{"stepmode":0,"stepsize":56,"transtime":9}` payload.<br>Sends the `commandStop` command, on button release. |
| Brightness down | Single | Step down the brightness | In steps of 30 points (around 12%), using the `commandStep` command with `{"stepmode":1,"stepsize":30,"transtime":9}` payload. |
| Brightness down | Long | Smoothly decrease the brightness | In steps of 56 points (around 22%), using the `commandStep` command with `{"stepmode":1,"stepsize":56,"transtime":9}` payload.<br>Sends the `commandStop` command, on button release. |
| Off | Single<br>Long | Turn off | Using the `commandOffWithEffect` command with `{"effectid":0,"effectvariant":0}` payload. |

### Troubleshooting

Expand Down
16 changes: 15 additions & 1 deletion docs/devices/929002398602.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ pageClass: device-page
<!-- Notes BEGIN: You can edit here. Add "## Notes" headline if not already present. -->
## Notes

### Battery Type
Uses a CR2032 battery.

### Pairing
Factory reset the Hue dimmer switch by removing the battery cover and pressing and holding the setup button for 10 seconds. The LED on the front will blink red and the device is ready to pair.
Expand All @@ -41,7 +43,19 @@ This method also works for Philips Hue Lightstrips.
Hue dimmer switch can also be used to factory reset Ikea Trådfri light bulbs using the same method described above.

### Binding
If you want to bind the dimmer to a (Hue) lamp you'll have to *[bind it to the lamp through MQTT](../guide/usage/binding.md)* and unbind it from the coordinator. Use the dimmer as source and a literal `coordinator` as target for that.
By default, the device is bound to the coordinator, but it can also be used to directly control other lights and switches in the network (see [guide on binding](https://www.zigbee2mqtt.io/guide/usage/binding.html)).

As the device is sleeping by default, you will need to wake it up after sending the bind/unbind command by pressing any button.

When endpoint `1` is bound to a light or a group of lights, the behavior is as follows:
| Button | Click | Action | Comment |
|-----|-----|-----|-----|
| Power | Single<br>Double | Toggle state | The device keeps track of each press, alternating between on and off actions.<br>The on action is using the `commandOn` command.<br>The off action is using the `commandOffWithEffect` command with `{"effectid":0,"effectvariant":0}` payload. |
| Brightness up | Single | Step up the brightness | In steps of 30 points (around 12%), using the `commandStep` command with `{"stepmode":0,"stepsize":30,"transtime":9}` payload. |
| Brightness up | Long | Smoothly increase the brightness | In steps of 63 points (around 25%), using the `commandStep` command with `{"stepmode":0,"stepsize":63,"transtime":9}` payload.<br>Sends the `commandStop` command, on button release. |
| Brightness down | Single | Step down the brightness | In steps of 30 points (around 12%), using the `commandStep` command with `{"stepmode":1,"stepsize":30,"transtime":9}` payload. |
| Brightness down | Long | Smoothly decrease the brightness | In steps of 63 points (around 25%), using the `commandStep` command with `{"stepmode":1,"stepsize":63,"transtime":9}` payload.<br>Sends the `commandStop` command, on button release. |
| Hue | Single | Switch between scenes | The device keeps track of each press, alternating between two scenes (`"sceneid":1` and `"sceneid":2`) in a predetermined group with `"groupid":43632`, using the `commandRecall` command. |

### Troubleshooting

Expand Down

0 comments on commit db05054

Please sign in to comment.