Send an notification of an entity value on specific time

Hello, this is my first post.
I have a utility meter that sums the daily energy cosnuption. This entity resets every day at 00:00.
Is it possible to create an automation where an notification of the entity value be sent next day’s morning, before it resets ( 09:00 for example)?
Perhaps an automation condition or template?

alias: New automation
description: ""
trigger:
  - platform: time
    at: "23:59:59"
condition: []
action:
  - service: notify.mobile_app_m2101k6g
    data:
      message: "{{ states('sensor.energy_consumption_daily') }}"
mode: single

this automation sends the nofication at 23:59. I want if ,it is possible, to be sent next morning

https://community.home-assistant.io/t/how-to-help-us-help-you-or-how-to-ask-a-good-question/114371#oneone-format-it-properly-16

1 Like