How to setup elements for digital stopwatch

How to setup a digital stopwatch to only display hrs:mins:sec in this format, 00:00:00?
The current codes, #SWEM#, #SWES#, etc, all show a large string of numbers after the core element.

Working on it.

Got a little distracted, and started developing stopwatch with hands …

1 Like

UPDATE:

Turns out it is next to impossible … which is to say possible with major effort.


inspection enabled


@Facer_Official,

I think you should remove the current #SWES# tag, and replace it with:

(a.)
#SWFSS# like current #DWFSS# (Smooth Rotation value for Stopwatch second hand (0-359.99399991780274))

and (b.)
#SWES# (revised) which returns 0-59

Currently any attempt to tame #SWES# (i.e. (floor(#SWES#)!60) or similar) invariably still returns a number with 15 (or more) decimal places.

1 Like

(floor((#SWEM#-((floor((#SWEM#/60)))*60)))):(floor((#SWES#-((floor((#SWES#/60)))*60))))

3 Likes

that’s great!! How would you make it so it was double 00:00 as default vs single 0:0 ?

Would love to know how to add an extra zero?