Specifications

1-22 Command Descriptions Rev. A
ESC c 1 n selects paper type(s) for use with line spacing command settings. Multiple paper types can
be selected. The default is all paper types selected (n=7). ESC 2 and ESC 3 are used to set line
spacing. The value of n is used as follows:
ESC f t1 t2
[Name] Set slip paper wait time
[Format] ASCII ESC f t1 t2
Hex 1B 66 t1 t2
Decimal 27 102 t1 t2
[Range] 0
t1
≤ 15
0
t2
≤ 64
ESC f t1 t2 sets the time that the printer waits for slip paper to be inserted to t1 × 1 minutes, and the
time from detection of the slip to the start of printing to t2 × 0.1 seconds. When t1=0, the slip waiting
time is not set and the printer continues waiting for a slip to be inserted. The default for the slip
waiting time is not set, and the start operation time is set to 1 second (t1=0, t2=10). This setting alone,
however, does not cause the printer to immediately start waiting for a slip to be inserted. The setting
becomes effective when ESC c 0 is used. DLE ENQ is used to cancel the slip waiting state.
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);"c1";CHR$(2);
Select receipt
PRINT #1, CHR$(&H1B);"3";CHR$(12);
Select paper feed amount for receipt
PRINT #1, CHR$(&H1B);"c1";CHR$(4);
Select slip
PRINT #1, CHR$(&H1B);"3";CHR$(24);
Select paper feed amount for slip
Program Example
PRINT #1, CHR$(&H1B);"f";CHR$(15);CHR$(20);
PRINT #1, CHR$(&H1B);"c0";CHR$(4);
Select slip
PRINT #1, "AAAAA"; CHR$(&HA);