Quote Originally Posted by Pesticida View Post
When I use this Syntax: hserout ["A",DEC3 Adval[0],"B",DEC3 Adval[1],13,10]
This will send out:
A
(3 decimal characters denoting the value in Adval[0])
B
(3 decimal characters denoting the value in Adval[0])
(CR)
(LF)

But when I use this:hserout ["A",Adval[0],"B",Adval[1],13,10] , without DEC3 is all OK!
This will send out:
A
(the actual value of Adval[0], as in a single byte value)
B
(the actual value of Adval[1], as in a single byte value)
(CR)
(LF)

Big difference between the two...