A SERVICE OF

logo

3 – 20 Programming
Character Sets
ASCII Decimal Hexadecimal Character Set
ESC 6 27 54 1B 36 II
ESC 7 27 55 1B 37 I
If you use Spanish for all your documents it is better to make the selection
on the internal switches so that the printer normally uses that language.
Cut Sheet Feeder
ASCII Decimal Hexadecimal
ESC EM I 27 25 73 1B 19 49
ESC EM R 27 25 82 1B 19 52
If you are printing program outputs using the Cut-Sheet Feeder, you
must include the Cut-Sheet Feeder insert and eject commands. When the
printer receives the PRINT command, it inserts a sheet of paper and
starts printing. Each time the printer receives the Cut-Sheet Feeder insert
command, it ejects the printed sheet then inserts a new sheet. Use the
Cut-Sheet Feeder eject command at the end of your program if you want
the printer to eject the printed sheet without inserting a new sheet.
You can use the CHR$(27); CHR$(25); “I” command to insert a new sheet
of paper from the hopper. If paper is already in the printer this sheet will
be ejected first before the new sheet is fed in. (In normal use this is
achieved by using the FF code).
Should you wish to eject a sheet then use the CHR$(27); CHR$(25); “R”
command.
Note: A LF command at the end of a page also causes the next sheet to be loaded.