Rev. A Command Descriptions 1-5
TM-T88/T88P (TM-T85/T85P) Information Manual
CR functions in the same way as LF when auto line feed is enabled. Auto line feed can be disabled or
enabled by DIP switch 1-1. This command sets the print position to the beginning of the line. When
auto line feed is disabled, this command is ignored. This command is available only with a parallel
interface and is ignored with a serial interface.
ESC J n
[Name] Print and feed paper
[Format] ASCII ESC J n
Hex 1B 4A n
Decimal 27 74 n
[Range] 0 ≤ n ≤ 255
ESC J n prints the data in the print buffer and feeds the paper n × (vertical or horizontal motion unit).
This command is used to temporarily feed a specific length without changing the line spacing set by
other commands. The maximum paper feed amount is 40 inches. When standard mode is selected,
the vertical motion unit set by GS P is used. When page mode is selected, the vertical or horizontal
motion unit set by GS P is used for the print direction set by ESC T.
ESC d n
[Name] Print and feed n lines
[Format] ASCII ESC d n
Hex 1B 64 n
Decimal 27 100 n
[Range] 0 ≤ n ≤ 255
Program Example Print Sample
PRINT #1, "AAAAA"; CHR$(&HD); AAAAA
←
Auto line feed enabled
PRINT #1, " BBBBB"; CHR$(&HA); BBBBB
AAAAA BBBBB
←
Auto line feed disabled
Program Example Print Sample
PRINT #1, CHR$(&H1D);"P";CHR$(180);CHR$(180);
PRINT #1, "AAAAA"; CHR$(&HA);
PRINT #1, "BBBBB"; CHR$(&H1B);"J";CHR$(100);
PRINT #1, "CCCCC"; CHR$(&HA);
PRINT #1, "DDDDD"; CHR$(&HA);
AAAAA
BBBBB
CCCCC
DDDDD
ESC J used to print one line and advance
the paper by 100/180 inc
h