Syntax:
stringvar = CHR(bytevar)
Command Availability:
Available on all microcontrollers
Explanation:
The CHR function creates a string of a ANSI (1-byte) character.
ASC is the natural complement of CHR.
Example:
string = CHR( 65 ) ' Returns "A" string = CHR( 66 ) ' Returns "B"
For more help, see Asc

