When making the countdowntimer with
new CountDownTimer(interval,1000)
{
.
.
}
I expect to get 1 second period in between ticks, but apparently the interval is quite random and because of that, sometimes the timer skipped 1 second.
When I experiment by displaying the millis directly, the interval ranges from 900-1150, and often skips one second because of that.
How can I fix this?