Specifications

Rev. A Command Descriptions 1-21
TM–U950/U950P Information Manual
ESC c 0 n selects paper type(s) for printing. Receipt, journal, and slip paper are available. Receipt
and journal paper can be selected simultaneously. Slip and another paper type cannot be selected
simultaneously. This command is enabled only when input at the beginning of a line. When
previously disabled slip paper is enabled, the printer waits for the slip to be inserted. When
previously enabled slip paper is disabled, the printer ejects the paper. Both journal and receipt paper
are enabled by the default value (n=3).
The paper type(s) are selected for printing by using n as follows:
ESC c 1 n
[Name] Select paper type(s) for command settings
[Format] ASCII ESC c 1 n
Hex 1B 63 31 n
Decimal279949n
[Range] 1
n
≤ 7
Bit Off/On Hex Decimal Function
0
Off 00 0 Journal paper roll disabled.
On 01 1 Journal paper roll enabled.
1
Off 00 0 Receipt paper roll disabled.
On 02 2 Receipt paper roll enabled.
2
Off 00 0 Slip paper disabled.
On 04 4 Slip paper enabled.
3–7 Undefined.
Program Example
PRINT #1, CHR$(&H1B);"c0";CHR$(1);
Select journal
PRINT #1, "AAAAA"; CHR$(&HA);
Print on journal
PRINT #1, CHR$(&H1B);"c0";CHR$(2);
Select receipt
PRINT #1, "BBBBB"; CHR$(&HA);
Print on receipt
Print Sample <receipt> Print Sample <journal>
BBBBB AAAAA