if (minute <= 9){format(string,25,"%d:0%d",hour,minute);} else {format(string,25,"%d:%d",hour,minute);}
format(string,25,"%d:%02d",hour,minute);