Wow, that worked wonderfully!
How can I string multiple of these together? I feel like an idiot right now, but nothing is working. I've tried:
char output[20] = itoa(hour, s, 10) + ':' + itoa(minute, s, 10) + ':' + itoa(second, s, 10);
lcd.printIn(itoa(hour, s, 10) + '/' + itoa(minute, s, 10) + '/' + itoa(second, s, 10);
lcd.printIn(itoa(hour, s, 10) + "/" + itoa(minute, s, 10) + "/" + itoa(second, s, 10));
I come from the Ruby world where this stuff is much easier!! ![]()
lcd.print would do it for me, but it doesn't like this stuff (I guess because it doesn't have the \0 on the end)
Thanks for all your help,