I’m trying to do some expressions with UTC_TS to get a custom time. When I place a text with UTC_TS only then it’s correctly refreshing after installing it on my watch. However when I do some expression like ((3600/175)*[UTC_TS]) then it refreshes very rarely. Once per few minutes maybe. How to put an expression with UTC_TS which will refresh at least each second?
Somehow I’ve figured it out. Everything refreshes correctly until you use a “/” character. I wanted to use it as a division sign but maybe it works differently? In my case I just changed ((3600/175)*[UTC_TS])
to (20.5714285714285*[UTC_TS])
and it works good.
2 Likes