I've looked through as much as I can find on itoa(), do you suggest I do something like:
hours = mySerial.read();
minutes = mySerial.read();
seconds = mySerial.read();
itoa(hours,2,10);
itoa(minutes,2,10);
itoa(seconds,2,10);
If so what do I tell Serial to print?
Also without any of this I'm receiving output like so:
145:154:145,228,362,356
156:148:154,278,360,356
134:133:145,283,362,356
154:145:152,285,361,356
148:154:135,286,361,357
133:145:154,286,360,356
145:152:148,287,362,355
As far as I can tell, it looks like the 3 bytes are being jumbled up and printed in random order.
(This is with the uno giving the time, not me doing it manually anymore)