Hi all,
I need a brief help from someone more familiar with Zigbe2MQTT.
I have this device with several buttons, and I want to create triggers for my automation. How do I properly transcribe this MQTT messages from MQTT explorer?
{
"action": "short_press",
"action_buttons": [
"k5"
],
"battery": 100,
"linkquality": 255
}```
This I managed myself and it "works", but I need to take account of which button is pressed (currently it acts for any short_press), so I believe I somehow need to change payload to include both "action" and "action_butons"?
trigger: mqtt
options:
topic: zigbee2mqtt/Wall panel remote/action
payload: short_press
Thanks in advance!