Update clock at the beginning of each minute

As it is now, using `minutes: "/1"`, the time will update every minute, but that could happen when lots of seconds has passed on that minute, making possible the displayed time to be up to 59s late.
By changing that to `seconds: 0` if forces the update in the same rate, but always in the first second of a minute, keeping the displayed time always updated.
This commit is contained in:
Edward Firmo
2023-03-26 22:26:55 +02:00
committed by GitHub
parent df976b0a90
commit ecd806b1c5

View File

@@ -3651,7 +3651,7 @@ trigger:
##### Time - Trigger "time_state" #####
- platform: time_pattern
minutes: "/1"
seconds: 0
id: time_state
#### Weather state changed #######