The Picard Maneuver@lemmy.worldM to Facepalm@lemmy.world · 8 days agoStop the count.lemmy.worldimagemessage-square40linkfedilinkarrow-up1229arrow-down18
arrow-up1221arrow-down1imageStop the count.lemmy.worldThe Picard Maneuver@lemmy.worldM to Facepalm@lemmy.world · 8 days agomessage-square40linkfedilink
minus-squarewise_pancake@lemmy.calinkfedilinkarrow-up4·8 days agoThis timer allows pausing though, so I think you have to store a sequence of timestamps
minus-squaresem@lemmy.blahaj.zonelinkfedilinkarrow-up1·8 days agoIf you rooted the iPhone could you use some kind of hex editor?
minus-squarePiafraus@lemmy.worldlinkfedilinkarrow-up1·7 days agoDoes it show the “laps” and their times? If not, I think it can still be implemented by storing just two values - time delta before previous stop and timestamp of previous start/un pause.
minus-squarewise_pancake@lemmy.calinkfedilinkarrow-up1·7 days agoIt does, those can be a list of timestamps with a lap flag. Pauses can be a pause/resume flag. Fairly easy data structure to build.
This timer allows pausing though, so I think you have to store a sequence of timestamps
If you rooted the iPhone could you use some kind of hex editor?
Probably, the data exists somewhere
Does it show the “laps” and their times? If not, I think it can still be implemented by storing just two values - time delta before previous stop and timestamp of previous start/un pause.
It does, those can be a list of timestamps with a lap flag. Pauses can be a pause/resume flag.
Fairly easy data structure to build.