Another way to do it is to write a blank over the second digit if the number is less than 10:
lcd.print(countdown);
if (countdown < 10)
lcd.print(" ");
Another way to do it is to write a blank over the second digit if the number is less than 10:
lcd.print(countdown);
if (countdown < 10)
lcd.print(" ");