Specifications
1-18 Command Descriptions Rev. A
CAN deletes all the print data for the current print job in page mode. This command is enabled only
in page mode.
Panel Button Command
The TM-U375/U375P supports the following command for enabling and disabling the panel buttons
(PAPER FEED and RELEASE):
Command Name
ESC c 5 Enable/disable panel buttons
ESC c 5 n
[Name] Enable/disable panel buttons
[Format] ASCII ESC c 5 n
Hex 1B 63 35 n
Decimal 27 99 53 n
[Range] 0 ≤ n ≤ 255
ESC c 5 n enables or disables the PAPER FEED and RELEASE buttons. When the LSB (least significant
bit) of n is 1, these buttons are disabled; when it is 0, these buttons are enabled. The default setting is
n=0. To prevent problems caused by accidentally pressing the buttons, use this command to disable
them. When the printer cover is open, the PAPER FEED button is disabled and the RELEASE button is
enabled, regardless of the setting of this command.
Program Example Print Sample
PRINT #1, CHR$(&H1B);"L";← Select page mode
PRINT #1, CHR$(&H1B);"W";CHR$(0);CHR$(0);CHR$(0);
CHR$(0);CHR$(120);CHR$(0);CHR$(100);CHR$(0);
PRINT #1, CHR$(&H1B);"T";CHR$(0);
FOR i=1 TO 200
PRINT #1, "A";
NEXT i
PRINT #1, CHR$(&H1B);"W";CHR$(30);CHR$(0);CHR$(30);
CHR$(0);CHR$(30);CHR$(0);CHR$(30);CHR$(0);
PRINT #1, CHR$(&H18);← Cancel pr int data
AAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAA
AAAAA AAAAAAAAAA
AAAAA AAAAAAAAAA
AAAAA AAAAAAAAAA
AAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAA
PRINT #1, CHR$(&HC);← Batch print
Program Example
PRINT #1, CHR$(&H1B);"c5";CHR$(1); ← Disable panel buttons