ESC Dec Hex Symbol Function
ESC 75 4B K
Turns Single-Density Graphics Mode ON.
Prints 480 dots per 8-inch line. Format:
CHR$(27)“K”CHR$(n
1
)CHR$(n
2
);
followed by n data numbers, where
n = n
1
+ 256*n
2
,
n
1
= 0 - 255,
n
2
= 0 - 255.
For example, to print 480 dots, n
1
= 224, n
2
= 1.
ESC 76 4C L
ESC 77 4D M
ESC 78 4E N
ESC 79 4F O
ESC 80 50 P
Turns Low-Speed Double-Density Graphics
Mode ON. Prints 960 dots per 8-inch line.
Format:
CHR$(27)“L”CHR$(n
1
)CHR$(n
2
)
followed by n data numbers, where
n = n
1
+ 256*n
2
,
n
1
= 0- 255,
n
2
= 0 - 255.
For example, to print 960 dots, n
1
= 192, n
2
= 3.
Turns Elite Mode (12 cpi) ON. Cannot mix with
Pica, Proportional, Emphasized, or
Compressed Mode.
Sets skip-over-perforation to n lines. Format:
CHR$(27)”N”CHR$(n)
where n = 1 - 127.
Turns skip-over-perforation OFF
Turns Elite Mode OFF Returns to Pica unless
Compressed Mode is active.
277