Hello all,
Can you tell me, how can i set second hand rotation with a lower frequency, for example, a few jumps per second.
Thank you all.
Hello all,
Can you tell me, how can i set second hand rotation with a lower frequency, for example, a few jumps per second.
Thank you all.
Just use (#DWFSS#*2)
I meant second hand movement like the stock watchface Tomcat on galaxy watch.
The second hand ticks 5 times in a second.
I think you may be looking for this tag #DWFS#
(Rotation value for second hand (0-354 with intervals of 6))
No, that tag jumps every second, i need to set a tag where it jumps 6 times in a second.
If you want the second hand to jump 6 times in every second, use this:
(round(#DWFSS#))
Essentially, at 6 times per second, you want the second hand to tick 360 times per minute. The #DWFSS# tag will already give you a value from 0 to 359.9, but it represents it as a decimal and give you feedback far more times per second than just 6 times. But, if we essentially “chop off the decimal values” by rounding the value each time we get feedback from that tag, then it’ll conveniently only change the value 6 times per second. if you want something other than 6 times per second, we’d have to do some more advanced math.
Thank you very much, that is exactly what i wanted.