How can I visualize the battery status into a rotating pointer?

hello everyone !

Im pretty new , so sorry for this question but , I´m sitting here since more than an hour and i can`t find a solution.

I want that my battery status is visualize like the hourhand for example . So that the pointer rotates 360 degress or 270 degress from 100% battery to 0 degress by 0% battery live.

I really estimate your help! And thank you very much for your time and support!

Use the #BLN# tag. It’s the integer for watch battery percentage (0-100). For a full 360 sweep, apply this to the rotation field of the hand in question: (#BLN#*3.6). This will multiply each percent by 3.6 so by 100% the hand will have turned 360 degrees.

Please note that this is for clockwise rotation, so if 100% is at the very top, then 90% will be 36 degrees to the right of it (10*3.6). If you want the hand to rotate counterclockwise, then add a negative multiplier to your expression (-(#BLN#*3.6)).

I hope that helps,
Anthony

2 Likes

Anthony thank you very much !!!