-
-
Notifications
You must be signed in to change notification settings - Fork 2
chr
Anobium edited this page Mar 1, 2022
·
1 revision
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