[NUT]
[NUT]
I will second this request. I think this may be the way to go in the future as it in general is faster then SPI driven displays.
I'm not sure how to compare the pictures themselves in the automation, but it feels it may be very resource intensive. You can however build automation using the ringing event,...
I just discovered the use of the last_changed timestamp attribute of image.doorbell_event_image is a trigger which will work. I never thought of that before now. You can trigger on 'any...
Yes, but it triggers more often even when the timestamp itself does not change... 👎 I'm still pretty green when it comes down to HA and it's automation, so I...
`trigger: - platform: state entity_id: - image.doorbell_event_image id: sensor attribute: last_changed` This is the trigger for my latest attempt...  Eventhough the timestamp is updated,...
YES! That worked 👍 "{{ states.image.doorbell_event_image.state }}" in a template sensor helper... and now it triggers correctly on an update there... weird that the automation does trigger on last_update and...
So I add a trigger like this? " platform: template value_template: "{{ states.image.doorbell_event_image.state }}" " Or does it need any other logic?
Unfortunately that does not trigger the automation... so it seems to be missing something there... (maybe a comparison, old and new value)
@fuatakgun I have a workaround. Focus on bugs first. I understand my friend. Thank you for your help so far 👍
FYI, I just discovered that there still is a delay you need to keep in mind when using the workaround. It seems to update the timestamp before it updates the...