48 Hour Hands One Rotation?

Hi,

I’m trying to design a watch face that uses hour hands that only rotate a full revolution once every 48 hours instead of 12 or 24. I have tried using #DWFHS#*0.5 which I thought would do it but I’m mistaken. Any help would be much appreciated.

Thanks

Kev

Oops managed to work it out, just need brackets ((#DWFHS#*0.5))

Hi, may be it would work with (0.5*(#DWFHS#))
Antoine

Actually using (0.5*(#DWFHS#)) will stop it at 24 hours, and then jump back to 0 hours mark.

You would need to add day counter into that equation:

((#DD#*24)+#Dk#)

gives you a current hour with days in a year

((#DD#*24)+(#Dk#+((#Dm#+(#Dsm#/60))/60)))

for truly smooth
and this for final effect (current hour going from 0 to 48):

(((((#DD#*24)+(#Dk#+((#Dm#+(#Dsm#/60))/60)))/48)- floor(((#DD#*24)+(#DH#+((#Dm#+(#Dsm#/60))/60)))/48))*48)

to get that into rotation:

(((((#DD#*24)+(#Dk#+((#Dm#+(#Dsm#/60))/60)))/48)- floor(((#DD#*24)+(#DH#+((#Dm#+(#Dsm#/60))/60)))/48))*48)