I’ve created an intervals workout app (focused on Burpees). One feature in the app is the calculation of interval timings, ie. the time per set and per rest between sets, and the time per repetition within each set. Here’s the app template:
This picture shows the timings for a particular workout:
I’d like to create a feature based on a countdown timer that puts these numbers into use. In other words, during a set (when the user should be exercising), the screen displays something to that effect; likewise, there’s a visual prompt for each repetition.
Repetitions might have a duration of around 5 seconds, so I’d need to create a feature that’s updating frequently.
I imagine it needs some kind of FOR EACH and WHILE logic, but I don’t know how to implement this in Glide or whether there’s another way.
Gladly welcome any ideas or examples illustrating how this could be done.