Hi Eric,
Yeah, that helps to clarify quite a bit.
Would 0,0 in binary then be 00000000? And 1,1 = 00010001 thru to 9,9 = 10011001.
Thats almost correct, but it wouldn't be Binary, but 'packed BCD'.
As Binary '00010001' would be '17 decimal' or '11h, hex'
Similarly in decimal, 0,0 would be interperited as 0. With 1,1 = 17 and 9,9 = 153.
See above explanation
I'm playing with the code and I'll be able to run it on a microcontroller this coming weekend. Hopefully I'll get some good results in practice. I think the code will interperate the byte returned from the clock as an 8 bit decimal number and I may have to try a string function to break it into first and last four bits.