(1) Example of generating QRCODE in Auto mode:
a. General data string
SIZE 4,2.5
GAP 0.12,0
CLS
QRCODE 10,10,H,4,A,0,"ABCabc123"
QRCODE 160,160,H,4,A,0,"123ABCabc"
QRCODE 310,310,H,4,A,0,"打印机 ABCabc123"
PRINT 1,1
b. The string including <Enter>(i.e.: 0Dh, 0Ah)
SIZE 4,2.5
GAP 0.12,0
CLS
QRCODE 10,10,H,4,A,0,"ABC<Enter>
abc<Enter>
123"
QRCODE 160,160,H,4,A,0,"123<Enter>
ABC<Enter>
abc"
QRCODE 310,310,H,4,A,0,"打印机<Enter>
ABC<Enter>
abc<Enter>
123"
PRINT 1,1
c. Data concatenation (Must in DOENLOAD…EOP mode)
DOWNLOAD “DEMO.BAS”
SIZE 4,2.5
CAP 0.12,0
CLS
QRCODE 10,10,H,4,A,0,"ABCabc123"+STR$(1234)
QRCODE 160,160,H,4,A,0,"123ABCabc"+"1234"
QRCODE 310,310,H,4,A,0,"打印机 ABCabc123"+"1234"+"abcd"
PRINT 1,1
EOP
DEMO
d. Data including Double quotation mark, change (“) to \[“].
SIZE 4,2.5
CAP 0.12,0
CLS
QRCODE 10,10,H,4,A,0,"ABC\["]abc\["]123"
QRCODE 160,160,H,4,A,0,"123\["]ABC\["]abc"
QRCODE 310,310,H,4,A,0,"\["]打印机\["]ABCabc123"
PRINT 1,1