Disable ticks in handleTickEvent() / Exit from handleTickEvent()
Hi
I'm in the process of developing a screen which takes input from main board and the down timer keeps ticking.
LED blinks until the progress bar fills.
The requirement for the LED is to blink when the progress bar is filling and become stable green once the down timer displays 0:00.
The calculation for the down timer is done inside handleTickEvent() and I get to know that the timer has reached 0:00 inside handleTickEvent() and this is how my code looks.
if (testDuration == 0) //To set LED intensity to stable green
{
StableRGB(GREEN);
}
else if ((tickCounter % 30) == 0) //To set LED intensity to blinking green
{
