EC-3150 THERMAL BARCODE PRINTER
30
QRCODE
160,160,H,4,A,0,"123\["]ABC\["]abc"
QRCODE
310,310,H,4,A,0,"\["]barcode
printer\["]ABCabc123" PRINT 1,1
(2) Example of manually generating QRCODE:
a.
General data string:
SIZE 4,2.5
CAP 0.12,0
CLS
QRCODE 10,10,H,4,M,0,"AABC!B0003abc!N123"
QRCODE
160,160,H,4,M,0,"N123!AABC!B0003abc"
QRCODE
310,310,H,4,M,0,"K
barcode
printer!AABC!B0006abc123"
PRINT 1,1
b.
The data string contains <Enter> (0Dh, 0Ah) and <Enter> is 8-bit byte data
SIZE 4,2.5
CAP 0.12,0
CLS
QRCODE 10,10,H,4,M,0,"AABC!B0007<Enter> abc<Enter>
!N123"
QRCODE 160,160,H,4,M,0,"N123!B0002<Enter>
!AABC!B0005<Enter> abc"
QRCODE 310,310,H,4,M,0,"K barcode printer!B0002<Enter>
!AABC!B0010<Enter> abc<Enter>
123"
PRINT 1,1
c.
Data concatenation (must be in DOENLOAD ... EOP mode)
DOWNLOAD “A.BAS”
SIZE 4,2.5
CAP 0.12,0
CLS
QRCODE 10,10,H,4,M,0,"AABC!B0006abc123!N"+STR$(1234)
QRCODE 160,160,H,4,M,0,"N123!AABC!B0007abc"+"1234"
QRCODE
310,310,H,4,M,0,"K
barcode
printer!AABC!B0014abc123"+"1234"+"abcd"
PRINT 1,1
EOP
A
d.
When the content contains double quotation marks ("), replace it with \ ["]
SIZE 4,2.5
CAP 0.12,0
CLS
QRCODE 10,10,H,4,M,0,"AABC!B0005\["]abc\["]!N123"
QRCODE 160,160,H,4,M,0,"N123!B0001\["]!AABC!B0004\["]abc"
QRCODE 310,310,H,4,M,0,"B0001\["]!K barcode printer!B0010\["]ABCabc123"
PRINT 1,1