Specifications
1-4 Command Descriptions Rev. A
Print Commands
The TM-U375/U375P supports the following commands for printing characters and advancing
paper:
Command Name
LF Print and line feed
CR Print and carriage return
FF Print and eject cut sheet (in standard mode)
Print and return to standard mode (in page mode)
ESC J Print and feed paper
ESC d Print and feed n lines
LF
[Name] Print and line feed
[Format] ASCII LF
Hex 0A
Decimal 10
LF prints the data in the print buffer and feeds one line. The amount of paper fed per line is based on
the value set using the line spacing command. The default setting is 1/6 inch.
CR
[Name] Print and carriage return
[Format] ASCII CR
Hex 0D
Decimal 13
CR prints one line of data from the print buffer and does not feed the paper. This command sets the
print starting position to the beginning of the line.
Program Example Print Sample
PRINT #1, "AAAAA"; CHR$(&HA); AAAAA
PRINT #1, "BBBBB"; CHR$(&HA); BBBBB
Program Example Print Sample
PRINT #1, "AAAAA"; CHR$(&HD); AAAAABBBBB
PRINT #1, " BBBBB"; CHR$(&HA);
1
2