#Google Sheets
1 messages · Page 1 of 1 (latest)
a spreadsheet is not a database...
why are you writing stuff out to sheets to read it back in again?
why not just keep stuff in HA?
what are you actually trying to do?
To answer the first question... because this 👇, looks like shit.
All i want is
"date - event"
you could make a helper entity which you then display.
then when your automation runs you just update the helper to the current datetime
if you use a markdown card you could do something like this
# Latest Feeding
{{ as_datetime(state_attr('automation.FEEDING_AUTOMATION_ENTITY', 'last_triggered')).strftime('%B %d, %Y, %H:%M') }}
# Latest Poop
{{ as_datetime(state_attr('automation.POOPING_AUTOMATION_ENTITY', 'last_triggered')).strftime('%B %d, %Y, %H:%M') }}
# Latest Shed
{{ as_datetime(state_attr('automation.SHED_AUTOMATION_ENTITY', 'last_triggered')).strftime('%B %d, %Y, %H:%M') }}
# Latest Cleaning
{{ as_datetime(state_attr('automation.CLEANING_AUTOMATION_ENTITY', 'last_triggered')).strftime('%B %d, %Y, %H:%M') }}
obviously updating to the correct automation names
that would give you something like this
obviously your theme would adapt it
is that more what your looking for?