Aeon Labs Minimote with zwave js?

i have read this solution for the Aeon Minimote and this get me on to the right track.
I’m using Aeon Wallmote Quad and i think the solution is the same for every device.

My final code is as followed:

- alias: Wallmote 1
  trigger:
    - platform: event
      event_type: zwave_js_event
      event_data:
        device_id: [OWN DEVICE ID HERE]
        label: [OWN LABEL HERE]
        value: KeyPressed (or KeyHeldDown or KeyReleased)
  action:
    - service: switch.toggle
      entity_id: light.wall

I came to this solution as follow:

  1. Add node to Zwave JS
  2. Wait untill is fully reconised
  3. Go to Developer Tools - Events
  4. Fill in zwave_js_event by Listen to events and press start listening
  5. Press, hold or release the button on your node
  6. Press stop listening
  7. Write down device_id, label and value
  8. Change previous code into your own

Good luck.