Aquara Button Short Press sensitivity

So I got an Aquara Zigbee Button here:

I tend to use it as a Doorbell Button, but it only reacts if I press it supershort, every normal press is ignored.
It is connected via Deconz Conbee2 Stick, and when I pair it with a light directly in Deconz it always works, but HA seems to onyl get a notification when it is ultra short pressed.

is there anything I can do about this?

This is the Automation:


alias: Klingel Aussen
description: ''
trigger:
  - device_id: cbd061a3421a3a7cfba6e3d9e32344fa
    domain: deconz
    platform: device
    type: remote_button_short_press
    subtype: turn_on
condition: []
action:

You could go to the Developer Tools and under EVENTS section, where it says events to subscribe to, place deconz_event, and then click start listening. Once this is done click the button, and you should see some output like this:

{
    "event_type": "deconz_event",
    "data": {
        "id": "bedroom_button",
        "unique_id": "00:15:90:00:02:c8:d2:61",
        "event": 1002,
        "device_id": "614f90fcfe5b45505316d2688fba700a"
    },
    "origin": "LOCAL",
    "time_fired": "2022-04-07T16:24:06.193744+00:00",
    "context": {
        "id": "43090ee9bc5d73908a3e652a69b2ee42",
        "parent_id": null,
        "user_id": null
    }
}

Now you can setup a trigger like this:

trigger:
  - platform: event
    event_type: deconz_event
    event_data:
      id: bedroom_button
      event: 1002

I am not sure all the events this button has, but you can use this method to find out, i.e. single tap, double tap, triple tap and hold. The event number will change and you can correspond that event to that type of button press.

Thank you very much. Unfortuantely the button died completely while testing and doesnt turn on. I will send it back and get a new one.