Epson TM-U210 Series Printer User Manual


 
Confidential
EPSON
TITLE
SHEET
REVISION
NO.
SHEETNEXT
L
TM-U210 series
Specification
(STANDARD)
App.8 App.7
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
Half dot
dots are deleted because of the next character and not printed.
Printing result (unidirectional printing)
dots are not printed.
To avoid this, program the software as follows.
(Set the right-side spacing 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) ;