Change of angle in animation

hi
i am new to ignition. I know to bind a component to timer for an animation…but the thing is i want to change the angle of rotation…i want a circle to rotate clockwise /anticlockwise direction…any solution.

you might need an expresion in the step by value of the timer, like…
if (
(tag) = 1,
-15,
15)

this would make your circle to rotate anticlockwise if selected tag is 1 and clockwise if its 0. hope it helps