Rev. A Command Descriptions 1-51
TM-T88/T88P (TM-T85/T85P) Information Manual
When the printer is disabled, it ignores all received data with the exception of DLE ENQ 1 and DLE
ENQ 2. The default setting is n=1. If ASB is enabled when the printer is disabled by ESC =, the
printer transmits a 4-byte status message whenever the status changes.
ESC L
[Name] Select page mode
[Format] ASCII ESC L
Hex 1B 4C
Decimal 27 76
ESC S
[Name] Select standard mode
[Format] ASCII ESC S
Hex 1B 53
Decimal 27 83
ESC L switches from standard mode to page mode. This command is enabled only when processed
at the beginning of a line in standard mode; it has no effect in page mode. Standard mode is selected
as the default.
The following commands are not effective in page mode: ESC V, ESC a, ESC {, GS L, and GS W.
If these commands are processed in page mode, an internal flag is activated.
ESC S switches from page mode to standard mode. This command is effective only in page mode.
Data buffered in page mode is cleared. This command returns the values set by ESC W to the default
values. The value set by ESC T is maintained. The printer returns to standard mode with ESC S, FF,
and ESC @. When it returns to standard mode by ESC @, all settings are canceled. This command
sets the print position to the beginning of the line. The setting of ESC T and ESC W are not effective
in printing in standard mode but an internal flag is activated. In standard mode, FF, CAN, ESC FF,
ESC S, GS $ and GS / are ignored. Standard mode is selected as the default.
Program Example Print Sample
AAAAA CCCCC
PRINT #1, CHR$(&H1B);"=";CHR$(1);
←
Printer enabled
PRINT #1, "AAAAA";
PRINT #1, CHR$(&H1B);"=";CHR$(0);
←
Printer disabled
PRINT #1, " BBBBB";
PRINT #1, CHR$(&H1B);"=";CHR$(1);
←
Printer enabled
PRINT #1, " CCCCC"; CHR$(&HA);