I am making an analog watch face without a seconds hand. Thus, I would be able to save battery by not having to update the display every second and don't really need my function to be called every second.
My onUpdate function:
1. Clears any existing UI elements on screen.
2. Draws the minute hand using dc.drawLine
3. Draws the hour hand using dc.drawLine.
Thus, I don't really care about having my function being called every second.
However, onUpdate is called every second when the watch is not running in low power mode. Is there any way to force onUpdate to be called once per minute?