Hi, what is the parameter to indicate the total time (in movement) not time including pauses?
Thanks
timerTime is the time recording (not including pauses) elapsedTime is the time since recording started, including pauses)
If it is for a datafield, you have detect pauses by yourself.
Actually, Activity.Info.elapsedTime (the info.elapsedTime from info passed to compute()) is the time without pauses, while Activity.Info.timerTime is the time when not paused. No need to detect pauses yourself.
My mistake