RD-KT247 thermal printers
31 / 61
Hex:
1B
31 n
[Scope] 0 ≤ n ≤ 255 (The default value of ‘n’ is 3)
[Default] n=3
[Explanation]
Set the line spacing to n vertical dot pitch
[Example]
unsigned char str[4];
str[0] = 0x1B;
str[1] = 0x31;
str[2] = 8;
SendDataToPrinter(str,3);//
Set the line spacing to 8 vertical dot pitch
ESC SP n
[Name]
set the character spacing
[Type] ASCII
:
ESC
SP n
Decimal:
27
32 n
Hex:
1B
20 n
[Scope] 0 ≤ n ≤ 255 (The default value of ‘n’ is 0)
[Explanation]
Set the character spacing to n horizontal dot pitch
[Example]
unsigned char str[4];
str[0] = 0x1B;
str[1] = 0x20;
str[2] = 8;
SendDataToPrinter(str,3);//
Set the character spacing to 8 horizontal dot pitch
ESC a n
[Name]
Select justification methods
[Type] ASCII
:
ESC a n
Decimal:
27 97 n