I am able to add an item to my to-do list that is connected to my Google Tasks using the built in Google Tasks integration.
I can even set a due date as follows:
- service: todo.add_item
target:
entity_id:
- todo.my_tasks
device_id:
area_id:
data:
item: >-
{{‘New task ’ + (now().timestamp() |
timestamp_custom(’%d-%m-%Y’))}}
due_date: “{{((now().timestamp() + 86400)| timestamp_custom(‘%Y-%m-%d’))}}”
Unfortunately the due_datetime doesn’t work for Google Tasks.
Why does this matter? Only Tasks with a time set are seen by Google Assistant and so I don’t get reminders on my Nest devices.
Please add!