Specifications
Rev. A Command Descriptions 1-5
TM–U950/U950P Information Manual
When auto line feed is enabled, CR functions in the same way as LF. When auto line feed is disabled,
CR prints the data in the print buffer and does not feed the paper. The DIP switch setting enables or
disables auto line feed.
FF
[Name] Print and eject slip paper
[Format] ASCII FF
Hex 0C
Decimal 12
FF prints the data in the print buffer and ejects the slip paper. The amount of paper fed is based on
the value set using the eject length command. The slip is continuously ejected until the paper end is
detected, because the default value for the slip eject length is not set.
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 motion unit)] inches. 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.
Program Example Print Sample
PRINT #1, "AAAAA"; CHR$(&HD); AAAAA
←
Auto line feed enabled
PRINT #1, " BBBBB"; CHR$(&HA); BBBBB
AAAAABBBBB
←
Auto line feed disabled
Program Example Print Sample
PRINT #1, CHR$(&H1B);"c0";CHR$(4);
←
Select slip
AAAAA
PRINT #1, "AAAAA"; CHR$(&HA); BBBBB
PRINT #1, "BBBBB"; CHR$(&HC);
Entire sheet ejected