Confidential
EPSON
TITLE
SHEET
REVISION
NO.
SHEETNEXT
A
TM-U220A
Specification
(For Argentina Fiscal)
App.9 App.8
Example: If the following codes are transmitted, some dots are not printed.
(Graphic character H<B2> + “H” double-height enlarged)
PRINT #1, CHR$ (&HB2) ;
PRINT #1, CHR$ (&H1B); "!"; CHR$ (&H11);
PRINT #1, “H”; CHR$ ($HA) ;
When the data is buffered in the print buffer
Dots are affected by the previous character and are not stored in the print buffer.
Printing result (Unidirectional printing)
Dots are not printed.
To avoid this, program the software as follows.
(Set the right-side space of the graphic character (H<B2>) to 1.)
PRINT #1, CHR$ (&H1B) ; " "; CHR$(1) ; CHR$(&HB2) ;
PRINT #1, CHR$ (&H1B); "!"; CHR$ (&H11);
PRINT #1, "H"; CHR$ ($HA) ;
Half dot