Have you tried using HEX2 variable?
The 2 after HEX is the number of digits. You can also use DECx for decimal and BINx for binary with x being the number of digits to display.Code:hserout [HEX2 dummydata]
Have you tried using HEX2 variable?
The 2 after HEX is the number of digits. You can also use DECx for decimal and BINx for binary with x being the number of digits to display.Code:hserout [HEX2 dummydata]
Last edited by CocaColaKid; - 22nd August 2005 at 20:52.
Your code i believe will screw up the for...next loop because you will be changing the value of i.Code:array1 var byte[4] ... for i = 0 to 3 array[i]=i next i
I think this may work better.Originally Posted by CocaColaKid
Code:array1 var byte[3] ... for i = 0 to 3 array1[i]=i next i
Last edited by rhino; - 22nd August 2005 at 21:23.
Bookmarks