Automation to toggle light when pressing button not working

I have this zigbee button:

image

I want to toggle the light, when I test with “execute” in the UI it works, but not when pressing the button physically.

What’s wrong? I’ve restarted HA.

alias: Toggle Luz Sala
description: ''
trigger:
  - platform: event
    event_type: click
    event_data:
      entity_id: binary_sensor.switch_158d0001d62b0d
action:
  - type: toggle
    device_id: 8de9edda8db975633392ae7f920d66a1
    entity_id: light.luz
    domain: light
mode: single

Also not working.

Ok I found the click event type was missing the xiaomi aqara part.

alias: Toggle Luz Sala
description: ''
trigger:
  - platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.switch_158d0001d62b0d
condition: []
action:
  - type: toggle
    device_id: 8de9edda8db975633392ae7f920d66a1
    entity_id: light.luz
    domain: light
mode: single