RD-KT247 thermal printers
36 / 61
[Example]
unsigned char str[4];
str[0] = 0x1B;
str[1] = 0x69;
SendDataToPrinter(str,2);// Send the full-cutting command
ESC m
[Name]
Half cutting
[Type] ASCII
:
ESC
i
Decimal:
27
109
Hex:
1B
6D
[Explanation] cutter: half cutting
[Comment]
•
This command does not cause feeding line.
•
This command is only used in the printers with cutter.
[Example]
unsigned char str[4];
str[0] = 0x1B;
str[1] = 0x6D;
SendDataToPrinter(str,2);// Send the half-cutting command
ESC K nL nH d1 d2 ……dk
[Name]
Printing graphics command
①
[Type]
ASCII
ESC
K nL nH d1…dk
Decimal:
27
75 nL nH d1…dk
Hex:
1B
4B nL nH d1…dk
[Scope]
0 ≤nL ≤255
0 ≤nH ≤1
0 ≤d ≤255
[Explanation]