
str[2] = 1;// set the
white reverse printing mode
SendDataToPrinter(str, 3);
FS 2 n
[Name]
set character rotation Printing
[Type]
ASCII
:
FS 2
n
Decimal: 28
73 n
Hex: 1C 49 n
[Scope]
0 ≤n ≤3
[Explanation]
The command can rotate the character. The value of
n
is as follows:
n (Decimal) Counterclockwise rotation
0
Does not rotate
1
90 degrees (Counterclockwise rotation)
2
180 degrees (Counterclockwise rotation)
3
270
degrees (Counterclockwise rotation)
[Note]
Under the 90 degrees or 270 degrees rotation mode, the character width and height
magnification direction is opposite to the magnification direction of the general mode.
[Default]
n=0
[Example]
unsigned char str[3];
str[0] = 0x1C;
str[1] = 0x49;
str[2] = 1;// set 90 degrees rotation
SendDataToPrinter(str, 3);
ESC $ nL nH
[Name]
Set absolute print position
[Type]
ASCII
:
ESC $ nL nH
Decimal:
27 36 nL nH
Hex:
1B 24 nL nH
[Scope]
0 ≤
n
L + (
n
H x 256)
< 384
[Explanation]
Set the distance from the beginning of the line to the position at which subsequent
characters are to be printed.
The distance from the beginning of the line to the printing position is N horizontal dot pitch
The nL and nH are the low and high bit of double-byte unsigned integer N .
N=nL + nH×256
[Comment]
•
Settings outside the specified printable area are ignored.
•
In mode 1, n <= 372; In mode 2, n <= 420
[Example]
unsigned char str[4];
str[0] = 0x1B;
Summary of Contents for RD-FH8C7
Page 41: ...B character set 1 and 2 C International standard ASCII ...
Page 43: ......