Programming instructions
140
Intermec Fingerprint 6.13 – Programmer's Guide
1. Keyboard, cont'd.
15. PRINTER FUNCTION CONTROL, cont'd.
Remapping the Keyboard, cont'd.
The following example illustrates the mapping of the keyboard for
an EasyCoder 201 IIE (unshifted keys only). Note the limit of max.
300 characters per program line that makes it necessary to divide
the string between two lines:
10 A$=CHR$(1)+CHR$(0)+CHR$(0)+CHR$(0)
+CHR$(0)+CHR$(2)+CHR$(0)+CHR$(0)+CHR$(0)
+CHR$(0)+CHR$(3)+CHR$(0)+CHR$(0)+CHR$(0)
+CHR$(0)+CHR$(4)+CHR$(0)+CHR$(0)+CHR$(0)
+CHR$(0)+CHR$(5)+CHR$(0)+CHR$(0)+CHR$(0)
+CHR$(0)+CHR$(0)+CHR$(0)+CHR$(0)+CHR$(0)
+CHR$(0)+CHR$(13)
20 A$=A$+CHR$(28)+CHR$(29)+CHR$(30)+CHR$(0)
+CHR$(0)+CHR$(0)+CHR$(0)+CHR$(0)+CHR$(0)
+"."+"1"+"4"+"7"+CHR$(0)+"0"+"2"+"5"+"8"
+CHR$(0)+CHR$(8)+"3"+"6"+"9"+CHR$(0)
+CHR$(31)+CHR$(0)+CHR$(0)+CHR$(0)+CHR$(0)
+CHR$(0)+CHR$(0)+CHR$(0)+CHR$(0)
30 KEYBMAP$(0)= A$
40 END