Specifications

Rev. A Command Descriptions 1-41
TM–U375/U375P Information Manual
ESC < moves the print head to the home position. The print head first moves to the left-most position,
then to the right-most position, and then to approximately the center of the line.
To prevent paper jams, do not use this command while slip paper is inserted.
ESC U n
[Name] Turn unidirectional printing mode on/off
[Format] ASCII ESC U n
Hex 1B 55 n
Decimal 27 85 n
[Range] 0 n 255
ESC U n turns unidirectional printing mode on or off. When the LSB (least significant bit) of n is 1,
unidirectional printing is turned on; when it is 0, unidirectional printing is turned off and
bidirectional printing mode is turned on. Unidirectional printing can be turned on when printing
double-height characters to ensure that the top and bottom of the characters are aligned. The default
setting is n=0 in standard mode and n=1 in page mode.
ESC q
[Name] Paper release
[Format] ASCII ESC q
Hex 1B 71
Decimal 27 113
ESC q releases the paper.
Program Example
PRINT #1, CHR$(&H1B);"<";
Program Example
PRINT #1, CHR$(&H1B);"U";CHR$(1); Unidirectional printing mode turn ed on
Program Example
PRINT #1, CHR$(&H1B);"q"