RD-KT247 thermal printers
25 / 61
also change.
[Default]
The default tab positions are Font A (12*24).
[Example]
unsigned str[8];
unsigned char Order = 9;
str[0] = 0x1B;
str[1] = 0x44;
str[2] = 2;//
one character spacing from the first column
str[3] = 9;//
eight character spacing from the first column
str[4] = 14;//
thirteen character spacing from the first column
str[5] = 0; // end
SendDataToPrinter (str,6)
SendDataToPrinter (&Order,1);
SendDataToPrinter (“HT1”,3);
SendDataToPrinter (&Order,1);
SendDataToPrinter (“HT2”,3);
SendDataToPrinter (&Order,1);
SendDataToPrinter (“HT3”,3);
Order = 0x0D;
SendDataToPrinter (&Order,1);
SendDataToPrinter (“1234567890123456\r”,17)
ESC – n
[Name]
To select/cancel the underline mode
[Type] ASCII
:
ESC
-
n
Decimal:
27
45
n
Hex:
1B
2D
n
[Explanation]
n
= 1,
select the underline mode
n
= 0,
cancel the underline mode