Specifications

Rev. A Command Descriptions 1-7
TM–U950/U950P Information Manual
ESC d n prints the data in the print buffer and feeds n lines. The amount of paper fed per line is based
on the value set using the line spacing command. The maximum paper feed amount is 40 inches. The
default setting of the paper feed amount is 1/6 inch.
ESC e n
[Name] Print and reverse feed n lines
[Format] ASCII ESC e n
Hex 1B 65 n
Decimal 27 101 n
[Range] 0
n
255
ESC e n prints the data in the print buffer and feeds n lines in the reverse direction. The amount of
paper fed per line is based on the value set using the line spacing command. The maximum reverse
paper feed amount is 1/6 inch. The default setting of the paper feed amount is 1/6 inch.
Line Spacing Commands
The TM-U950/U950P supports the following commands for setting line spacing. These commands
only set the line spacing; they do not actually advance the paper. The line spacing set using these
commands affects the results of the LF and ESC d commands. The paper is advanced using the paper
feed buttons (RECEIPT FEED and JOURNAL/SLIP FEED).
Command Name
ESC 2 Select 1/6-inch line spacing
ESC 3 Set line spacing
ESC C Set slip paper eject length
Program Example Print Sample
PRINT #1, "AAAAA"; CHR$(&HA);
PRINT #1, "BBBBB"; CHR$(&H1B);"d";CHR$(6);
PRINT #1, "CCCCC"; CHR$(&HA);
AAAAA
BBBBB
CCCCC
ESC d used to print one line and then advance
the paper six lines
Program Example Print Sample
PRINT #1, "AAAAA"; CHR$(&HA);
PRINT #1, "BBBBB"; CHR$(&H1B);"e";CHR$(1);
PRINT #1, " CCCCC"; CHR$(&HA);
AAAAACCCCC
BBBBB
Paper reverse fed one line after printing line
of Bs