HOW TO: ASCII to Text
Rlondo
Posts: 6
I have an array in ascii:
array(4)
I know that if I want to print the 2nd item in decimal format I go:
DEBUG DEC array(1), CR
But what if I want to print it in text format?
Thanks
array(4)
I know that if I want to print the 2nd item in decimal format I go:
DEBUG DEC array(1), CR
But what if I want to print it in text format?
Thanks
Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
When the going gets weird, the weird turn pro. -- HST
DEBUG STR array
a zero will terminate the string. Take a look at the debug and the serial commands in the Pbasic help for formatting options.
Jeff T.