Any idea how to separate every two digits of a string?
If I have a string "112233445566", how do I read every (2) digits to
separate the values? These represent individual BYTES
I need to pull this string apart (2) characters at a time.
Byte # 1 = 11
Byte # 2 = 22
Byte # 3 = 33
Byte # 4 = 44
Byte # 5 = 55
Byte # 6 = 66