Homematic Klingel

Hallo Freunde ich habe ein Homematic -Klingelsensor Dort wird unter anderen auch ein Kurz gedrückt Button angezeigt. Wenn nun unten einer Klingelt dann wird ein Ereignis erkannt. Diese habe ich versucht in eine Automation auszuwerten. Doch leider funktioniert dies nicht. Mache ich was falsch?

alias: Klingel unten
description: ""
triggers:
  - trigger: state
    entity_id:
      - event.hm_sen_db_pcb_neq0955417_ch1
    attribute: event_type
    from: press_short
    to: press_short
conditions:
  - condition: time
    after: "06:00:00"
    before: "22:00:00"
actions:
  - action: telegram_bot.send_message
    metadata: {}
    data:
      message: Es hat an der Hauseingangstür geklingelt
      title: Bing Bing
  - action: notify.alexa_media_andreas_echo_show
    data:
      message: Es hat an der Hauseingangstür geklingelt
  - action: notify.alexa_media_andreas_echo_dot4
    data:
      message: Es hat an der Hauseingangstür geklingelt.
mode: single

Wer kann dazu was sagen.?
Gruß OSR

Moin probiere es mal so:

alias: Klingel unten
description: ""
triggers:
  - trigger: state
    entity_id:
      - event.hm_sen_db_pcb_neq0955417_ch1
conditions:
  - condition: time
    after: "06:00:00"
    before: "22:00:00"
  - condition: state
    entity_id: event.hm_sen_db_pcb_neq0955417_ch1
    attribute: event_type
    state: press_short
actions:
  - action: telegram_bot.send_message
    metadata: {}
    data:
      message: Es hat an der Hauseingangstür geklingelt
      title: Bing Bing
  - action: notify.alexa_media_andreas_echo_show
    data:
      message: Es hat an der Hauseingangstür geklingelt
  - action: notify.alexa_media_andreas_echo_dot4
    data:
      message: Es hat an der Hauseingangstür geklingelt.
mode: single

LG
Tobi

Danke ja hat geklappt super