Hi,
I have these two connected to my zigbee2mqtt controller:
https://www.zigbee2mqtt.io/devices/MS-105Z.html
https://www.zigbee2mqtt.io/devices/4512719.html
Since I’m a noob, what should my automation look like?
The dimmer switch’s payload on button hold is: brightness_move_up_1
The MOES dimmer documentation says you can use:
"brightness_move": 40
To dim the brightness 40 for every second. But I have no clue how to use this
So {"brightness_move": 40}
does not work for me. Anyway I have found a solution for this as of now. If someone manages to get the {"brightness_move": 40}
to work for this dimmer, please let me know.
Ayway, here is my solution:
Hi,
I have a dimmer switch which has the attribute brightness. I can adjust the brightness of this switch by pressing and holding one of the buttons.
I also have a dimmer with the brightness attribute.
Here is my automation for dimming the lights:
- alias: Dim1 dimmer test1
trigger:
- platform: mqtt
topic: zigbee2mqtt/dim1/action
payload: brightness_move_up_1
action:
- service: mqtt.publish
data:
topic: zigbee2mqtt/dimmer3/l1/set
payload_template: '{"brightnes…