Specifications
Appendix C
Parallax, Inc. • BASIC Stamp Programming Manual 1.8 • Page 389
C
ASC? value Displays “variablename = ‘character’ ”
+ carriage return; where character is an
ascii character.
STR bytearray Displays values as an ascii string until
a value of 0 is reached.
STR bytearray\n Displays values as an ascii string for n
bytes.
REP value\n Displays value n times.
DEC{1..5} value Displays value in decimal, optionally
limited or padded for 1 to 5 digits.
SDEC{1..5} value Displays value in signed decimal, op-
tionally limited or padded for 1 to 5 dig-
its. Value must not be less than a word
variable.
HEX{1..4} value Displays value in hexidecimal, option-
ally limited or padded for 1 to 4 digits.
SHEX{1..4} value Displays value in signed hexidecimal,
optionally limited or padded for 1 to 4
digits. Value must not be less than a
word variable.
IHEX{1..4} value Displays value in hexidecimal preceded
by a “$” and optionally limited or pad-
ded for 1 to 4 digits.
ISHEX{1..4} value Displays value in signed hexidecimal
preceded by a “$” and optionally lim-
ited or padded for 1 to 4 digits. Value
must not be less than a word variable.
BIN{1..16} value Displays value in binary, optionally lim-
ited or padded for 1 to 16 digits.
SBIN{1..16} value
Displays value in signed binary, optionally
limited or padded for 1 to 16 digits. Value
must not be less than a word variable.










