Could you elaborate a bit more on your use case and the issue?
By the way, it updates every minute + immediately when a condition becomes true/false.
I have a binary sensor āBrühvorgang aktivā which switches to āonā once the brewing process starts. Iād like to create a shot timer, that basically counts up the seconds for this process and display it in a browser-mod popup (i have a tablet positioned right next to the coffee machine, running HA + wallpanel).
After the brewing process is stopped, I would want to reset the timer to 0. Itās obviously important to not have a big delay for when the timer starts but also have the ability to show the timer itself on a realtime basis to make this use case work.
This thread https://community.home-assistant.io/t/stopwatch-with-start-stop-resume-lap-and-reset/443994?u=juergenjw might help.
MeasureIt it not really made for this usecase with live counting. It might be as simple as changing the update interval, but Iām not sure of the side effects. Better go with a regular timer like @juergenjw mentioned.
Thanks for pointing me to that other thread! Havenāt found that one before, might consider implementing that.