ToDo Listen Inhalt über Alexa ausgeben!

Hi, ich lasse mich zur Zeit von Alexa daran erinnern wenn ich die Haustüre aufmache das noch Zeug auf meiner ToDo liste stehen! jetzt will ich aber das mir Alexa sagt was genau auf meiner ToDo liste steht!

Im Prinzip sowas für ToDo Listen:

{{ expand('binary_sensor.fenster_und_turen_garage_benachrichtigung') | selectattr('state', 'eq', 'on') | map(attribute='name') | list | join (', ' 'und') }} ist noch offen

kann mir da jemand helfen?

Hier ein Script, den Du für Dich noch abrunden mußt. Es verschickt den Inhalt der Todo “fussballsensor” als Email

  1. Todo auslesen und in eine Variable speichern
  2. Variable auslesen
sequence:
  - action: todo.get_items
    data:
      status: needs_action
    response_variable: myToDo
    target:
      entity_id: todo.fussballsensor
  - action: notify.gmxolaf3
    data:
      title: todo
      message: |
        {% for item in myToDo["todo.fussballsensor"]["items"] -%} 
        - {{ item.summary }}
        {% endfor %}
alias: 1 forum todo
description: ""
1 „Gefällt mir“

Cool super hat funktioniert! danke dafür