Ring Intercom Automatisierung Tür öffnen

Hallo ich brauchte eure Hilfe :tired_face:

ich habe einen Ring Intercom konnte diesen schon im Home Assistant intrigieren.

Ich wollte eine Automatisierung erstellen wenn ich unten vor der Tür stehe will ich klingeln und die Tür soll sich öffnen einmalig in einem Zeitfenster von 15 min und danach wieder deaktivieren. Wie bei Nuki !

Habe eine Automatisierung mit einem tracker erstellt das klappt auch soweit aber dieser ist dann dauerhaft wenn ich zuhause bin was natürlich nicht so sein soll.

Habe euch mal meinen Yamal Code beigefügt.

Ich bitte doch um Hilfe

alias: "Neue Automatisierung Ring klingeln öffnen "
description: ""
trigger:
 - platform: device
   device_id: 0962596ee2d3eec11b3ca6036bc42b0d
   domain: homekit_controller
   type: button1
   subtype: single_press
condition:
 - condition: zone
   entity_id: device_tracker.maurice_
   zone: zone.zuhause
action:
 - device_id: 0962596ee2d3eec11b3ca6036bc42b0d
   domain: lock
   entity_id: lock.hauseingang
   type: unlock
mode: single

Habe es mit 4 Automatisierung geschafft :slight_smile:

1). Öffnet die Tür
2). Aktiviert die Automatisierung ( öffnet die Tür ) mit Tracker!
3). Deaktiviert ( Öffnet die Tür) wenn man klingelt nach 60 Sekunden!
4). Deaktiviert nach 10 min ( Öffnet die Tür ) sollte man nicht klingeln.

Habe euch alle YAMAL Codes beigefügt!
Müsst nur eure Zonen, Entity … ersetzen :+1:

1).

alias: "Neue Automatisierung Ring klingeln öffnen "
description: ""
trigger:
  - platform: device
    device_id: 0962596ee2d3eec14a6036bc42b0d
    domain: homekit_controller
    type: button1
    subtype: single_press
condition: []
action:
  - delay:
      hours: 0
      minutes: 0
      seconds: 5
      milliseconds: 0
  - device_id: 0962596ee2d3eec115036bc42b0d
    domain: lock
    entity_id: lock.hauseingang
    type: unlock
mode: single

2).

alias: "Ring Automation anschalten "
description: ""
trigger:
  - platform: zone
    entity_id: device_tracker. <~ eurer Tracker!
    zone: zone.zuhause <~ eure Zone!
    event: enter
  - platform: zone
    entity_id: device_tracker. <~ eurer Tracker!
    zone: zone.zuhause <~ eure Zone!
    event: enter
  - platform: zone
    entity_id: device_tracker. <~ eurer Tracker!
    zone: zone.zuhause <~ eure Zone!
    event: enter
condition: []
action:
  - service: automation.turn_on
    data: {}
    target:
      entity_id: automation.neue_automatisierung_ring_klingeln_offnen
mode: single


alias: "Stoppt die Automation Ring Tür öffnen "
description: ""
trigger:
  - platform: device
    device_id: 0962596ee2d3eec1436bc42b0d
    domain: homekit_controller
    type: button1
    subtype: single_press
condition: []
action:
  - delay:
      hours: 0
      minutes: 1
      seconds: 0
      milliseconds: 0
  - service: automation.turn_off
    data: {}
    target:
      entity_id: automation.neue_automatisierung_ring_klingeln_offnen
mode: single

4).


alias: "Tür öffnen nach 10 min deaktivieren "
description: >-
  Deaktiviert die automatische Tür Öffnung nach 10 min sollte man nicht
  klingeln 
trigger:
  - platform: zone
    entity_id: device_tracker.<~ eurer Tracker!
    zone: zone.zuhause <~ eure Zone!
    event: enter
  - platform: zone
    entity_id: device_tracker.<~ eurer Tracker!
    zone: zone.zuhause <~ eure Zone!
    event: enter
  - platform: zone
    entity_id: device_tracker.<~ eurer Tracker!
    zone: zone.zuhause <~ eure Zone!
    event: enter
condition: []
action:
  - delay:
      hours: 0
      minutes: 10
      seconds: 0
      milliseconds: 0
  - service: automation.turn_off
    data: {}
    target:
      entity_id: automation.neue_automatisierung_ring_klingeln_offnen
mode: single

Ich bekomme es nicht hin. Bei mir wird das Klingeln nicht angezeigt. Welche Entität zeigt an, dass jemand geklingelt hat.