DMP 2200 (260-1279) Control Codes Faxback Doc. # 4553
The DMP-2200 is designed for three applications:
* Data processing
* Word processing
* Graphics printing
The Printer responds to software codes from the computer in three different
ways--one for each application. The three response patterns, or modes,
have many similarities, but each has its own unique features.
Data and word processing modes are used for printing characters. The only
difference between these two modes is the way they handle line feed
commands (commands that decide which direction and how far the paper is
fed).
* In the word processing mode, each line feed command causes immediate
paper advancement. Word processing programs (such as SCRIPSIT) can use
immediate line feeds for superscripts, subscripts, and the like.
* In the data processing mode, line feed commands do not cause immediate
printing. Instead, they are stored in the Printer's memory along with
the other data. When the current line is printed, the line feed commands
stored in memory determine the direction and pitch of the paper feed.
Both data and word processing modes can print in different printer font
styles and in different pitches (character spacing). One font style is the
proportional character set and the other is the monospaced character set.
* Proportionally spaced characters have variable widths; for instance, and
M takes up more space than an I. Proportional characters are used to
create professional-looking documents.
* Monospaced characters are so named because each character takes up the
same width. This uniformity makes it preferable to tables and charts
that require vertical alignment.
The font styles are determined by the dot-matrix pattern. Monospaced
characters use a 9 x 8 and 17 x 18 matrix, while proportionally spaced
characters use an n x 18 matrix.
The print pitch (character spacing) is determined by the space the DMP-220
puts between each printed character and also by the font style.
Consequently, you must think of pitch in terms of the number of characters
printed per inch--10 CPI, 12 CPI, and 17.1 CPI. CPI for standard printing
and 5 CPI, 6 CPI, and 8.6 CPI for elongated printing.
In graphics mode, you have complete control of the print head. This mode
can be used to create a custom letterhead, designs, special type fonts,
etc.
However, with graphic operation, many control codes (which can be used with
data and word processing) can not be used. The DMP-2200 doesn't return an
error when you send such a code--it simply ignores the code. This includes
codes that change line feed pitch and direction. Graphics mode uses 7/72"
forward line feed to ensure full coverage of the paper, and also 1/72",
1/144", and n/144" forward line feeds.
CONTROL CODES
Before investigating the various print modes, consider how the computer
communicates with your Printer.
All information is sent to the Printer as numbers between 0 and 255 decimal
(00-FF hexadecimal). The Printer interprets these numbers according to the
American Standard Code for Information Interchange, commonly referred to a
the ASCII code. (See Appendix C for a list of ASCII codes.) Most numbers
(or codes) are printed as letters, numbers, or symbols. However, the
numbers 0-31, as well as some special sequences of code numbers, are used
to control various functions of the Printer. These control codes allow you
to change character sets, select print modes, underline, superscript,
subscript, italicize, etc.
The control codes have different meanings, depending on the current print
mode. If a code is not recognized by the Printer, it is printed as X. The
next few sections demonstrate how some of the control codes activate
various Printer functions. Read these sections carefully.
SENDING CONTROL CODES FROM BASIC
Tandy codes are discussed in this section (DIP switch A-1 set to OFF). For
IBM codes, refer to chapter 8, IBM EMULATION MODE.
Some Printer features are activated by a single code, but many functions
require a sequence of two or more codes. Most multiple code sequences
begin with decimal 27 (referred to as the ESCape code). The ESC code
notifies the Printer that a special sequence is on its way. The next
code(s) sent determines which Printer feature is selected. In BASIC, use
CHR$( ) to send these codes to the Printer.
For instance, set up the DMP-2200 as described earlier and enter BASIC in
the normal way, then type the following program:
10 REM
20 LPRINT"DATA";CHR$(28);PROCESSING
30 LPRINT"MODE"
and RUN it.
Roll the paper forward and look at the results. The word MODE printed over
part of DATA. Why? The codes CHR$(27) and CHR$(28) are the guilty
parties. Take a quick look at Appendix A. This chart shows the various
code sequences understood by the DMP-2200. The control code sequence
CHR$(27);CHR$(28) means change the forward line feed to half its normal
distance.
DATA PROCESSING MODE
How can you tell which mode the DMP-2200 uses when it's first turned on? A
little reflection on the above program tells you all you need to know.
Line feed commands are executed immediately in word processing (WP) mode,
but not in data processing (DP) mode. The (27 28) sequence didn't cause a
half forward line feed until after the first line was printed. Thus, the
Printer must be in DP mode. And, in case you missed it, this new line feed
stays in effect until further notice (another characteristic of DP mode).
Type: LLIST <ENTER>
Sure enough. You still have that short line feed.
Type LPRINT CHR$(54) to return to normal line feed pitch.
WORD PROCESSING MODE
If the same program were executed in WP mode, the line feed would have
occurred immediately after the word DATA. Go into WP mode and try it. To
enter the WP mode, change line 10 to:
10 LPRINT CHR$(20):REM CHR$(20) SELECTS WP MODE
and RUN the program.
Just as you suspected, the line feed is immediately executed.
Note that in WP mode, the new line feed is only temporary. Type LLIST
<ENTER> to prove that the half forward line feed doesn't occur.
GRAPHICS MODE
Graphics mode is very different from the other two printing modes. For one
thing, graphics mode accepts a line feed code (CHR$(10) which is fixed at
7/72, and also 1/72", 1/144", and n/144" forward line feed codes.
Furthermore, only a few of the WP and DP features are available in graphics
mode. Standard letters and symbols, for example, are ignored by the
Printer when it is in graphics mode. Standard letters and symbols, for
example, are ignored by the Printer when it is in graphics mode. Instead,
numeric data from 128 to 255 is translated into dot patterns for the print
head. This lets you produce high-resolution, graphic printouts of charts,
logos, etc.
For a quick look at this mode in action, change our test program to:
10 LPRINT CHR$ (18)
20 FOR I=128 TO 255
30 LPRINT CHR$(I);
40 NEXT
and RUN the program.
CHR$(18) puts the DMP-2200 into graphics mode. The numbers 128 through 255
are interpreted as dot patterns.
Type LPRINT CHR$(30) <ENTER> to return the Printer to WP mode. Try
LPRINTing the program to be sure you're not stuck in graphics land.
SELECTING A PRINT MODE
Table 6 summarizes control codes required to move from one mode to another.
TABLE 6. CONTROL CODES FOR CHANGING MODES
ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
³ IF YOU'RE IN: ³ AND WANT TO ³ SEND A CHR$( ): ³
³ ³ CHANGE TO: ³ (DEC) (HEX) ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄ´
³ DP ³ WP ³ 20 ³ 14 ³
³ ³ GRAPHICS ³ 18 ³ 12 ³
³ ³ ³ ³ ³
³ WP ³ DP ³ 19 ³ 13 ³
³ ³ GRAPHICS ³ 18 ³ 12 ³
³ ³ ³ ³ ³
³ GRAPHICS ³ DP ³ 30* ³ 1E ³
³ ³ WP ³ 30* ³ 1E ³
ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÙ
* Returns to the last mode (WP or DP) used.
HINTS AND TIPS ABOUT PRINT MODES:
DATA PROCESSING MODE
* All commands which determine line feed pitch and the direction of
movement are stored in the Printer's memory. They are not executed until
a LF code (10 Dec.) is received. Then, the paper advances according to
the pitch and direction codes stored in the Printer's memory.
* Line feed commands stay in effect until replaced by a new command.
* All printable characters (except user-defined graphics) can be printed in
this mode.
WORD PROCESSING MODE
* Line feed codes that determine pitch or direction are executed
immediately.
* Line feed pitch and direction changes affect only the current print line.
* All printable characters (except user-defined graphics) can be printed in
this mode.
GRAPHICS MODE
* This mode is very different from the other two modes. In graphics mode,
a line feed code (10 Dec.) causes the paper to move 7/72" forward.
Forward line feed codes of 1/9", 1/48", 1/72", 1/144", and n/144" are
also available. Reverse direction is not allowed.
* Decimal numbers 128-255 sent via CHR$ in BASIC are interpreted as pin
firing patterns for the print head.
* Only a few code sequences are recognized in graphics mode.
CONTROL CODE SUMMARY A
TANDY CONTROL CODES
ÚÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÂÄÄÂÄÄ¿
³CODE HEX ³CODE DEC ³SYMBOL ³OPERATION ³DP³WP³BI³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³00 ³00 ³NUL ³Ignored ³X ³X ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³01 ³01 ³SOH ³Ignored ³X ³X ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³07 ³07 ³BEL ³Sounds the Buzzer ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³08+n ³08+n ³BS+n ³Back Space ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³0A ³10 ³LF ³Line Feed ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³0C ³12 ³FF ³Form Feed ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³0D ³13 ³CR ³Carriage Return ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³0E ³14 ³SO ³End Underline ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³0F ³15 ³SI ³Start Underline ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³12 ³18 ³DC2 ³Select BI Mode ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³13 ³19 ³DC3 ³Select DP Mode ³X ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³14 ³20 ³DC4 ³Select WP Mode ³O ³X ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+O1-09 ³27+01-09 ³ESC+n ³Proportional Spacing ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+0A ³27+10 ³ESC+LF ³Full Reverse LF ³* ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+0E ³27+14 ³ESC+SO ³Start Elongation ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+0F ³27+15 ³ESC+SI ³End Elongation ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+10+n1+n2³27+16+n1+n2 ³ESC+POS+n1 ³Positioning ³O ³O ³O ³
³ ³ ³+n2 ³ ³ ³ ³ ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+11 ³27+17 ³ESC+DC1 ³Select Proport.Character ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+12 ³27+18 ³ESC+DC2 ³Select Corresp.Cha.10 CPI ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+13 ³27+19 ³ESC+DC3 ³Select Standard Cha.10 CPI³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+14 ³27+20 ³ESC+DC4 ³Select Standard Cha.17 CPI³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+15 ³27+21 ³ESC+NAK ³Select CR=CR only ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+16 ³27+22 ³ESC+SYN ³Select CR=NL ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+17 ³27+23 ³ESC+ETB ³Select Standard Cha.12 CPI³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+1A ³27+26 ³ESC+SUB ³1/48" Forward LF ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+1C ³27+28 ³ESC+FS ³Half Forward LF ³* ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+1D ³27+29 ³ESC+GS ³Select Corresp.Cha. 12 CPI³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+1E ³27+30 ³ESC+RS ³Half Reverse LF ³* ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+1F ³27+31 ³ESC+US ³Select Bold Character ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+20 ³27+32 ³ESC+SP ³End Bold Character ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+21 ³27+33 ³ESC+! ³Select IBM Mode ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+2F ³27+47 ³ESC+/ ³Select Proport.Cha.(Comp) ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+32 ³27+50 ³ESC+2 ³1/72" Forward LF ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+34+n ³27+52+n ³ESC+4+n ³Set Form Length ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+36 ³27+54 ³ESC+6 ³Full Forward LF ³* ³X ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+38 ³27+56 ³ESC+8 ³Three-quarter Forward LF ³* ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+39 ³27+57 ³ESC+9 ³1/144" Forward LF ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+3A ³27+58 ³ESC+: ³Select IBM Character Set ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+3B ³27+59 ³ESC+; ³Select TANDY Character Set³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+40+n ³27+64+n ³ESC+!+n ³n/144" Forward LF ³* ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+42+n ³27+66+n ³ESC+B+N ³Italic On/Off for n=1,0 ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+47 ³27+71 ³ESC+G ³1/9" Forward LF ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+48n ³27+72+n ³ESC+H+n ³Set Perforation Skip ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+49+n1+n2³27+73+n1+n2 ³ESC+I+n1+n2 ³Select High Res. Bit Image³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+4D ³27+77 ³ESC+M ³Select Micro Font ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+51+n ³27+81+n ³ESC+Q+n ³Set Left Margin ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+52+n ³27+82+n ³ESC+R+n ³Set Right Margin ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+53+n ³27+83+n ³ESC+S+n ³Sup/Subscript for n=0,1 ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+55+n ³27+85+n ³ESC+U+n ³Bi/Unidirection for n=0,1 ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+57 ³27+87 ³ESC+W ³Select Double Height Char.³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+58 ³27+88 ³ESC+X ³End Sup/Sub ³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1B+59 ³27+89 ³ESC+Yn ³Select Int'l Character Set³O ³O ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1C+n1+n2 ³28+n1+n2 ³FS+n1+n2 ³Repeat Data ³O ³O ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³1E ³30 ³RS ³End BI Mode ³X ³X ³O ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³7F ³127 ³DEL ³Ignored ³X ³X ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³FF ³255 ³ ³Undefined Code ³X ³X ³D ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³Other 02-1F³Other 02-31 ³ ³Undefined Code ³? ³? ³X ³
ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÁÂÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÅÄÄÅÄÄ´
³Codes 80-9F³Codes 128-159³ ³Undefined Code ³? ³? ³D ³
ÀÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÄÁÄÄÁÄÄÙ
(dtc-07/26/93)
Privacy Policy