News Promotions2
logo CODEWARE
Homepage Label and card printing Solutions Blog Service Centre

Tiskárny TSC - automatický tisk QR kódů VCard
KB0008

Program pro automatický tisk QR kódů s adresou ve formátu VCard na tiskárnách TSC. Načtený kód přímo připojenou čtečkou k tiskárně odešle načtenou vizitku a ta následně vytvoří QR kód a vytiskne jej.

The QR code with the address is encoded in the following form, unlike the text. It is therefore necessary to read it with a 2D reader via the serial interface to preserve the [LF]

BEGIN:VCARD[LF]VERSION:3.0[LF]N: ... [LF]END:VCARD

It is therefore necessary to load the 2D reader via the serial interface to preserve [LF]

AUTO.BAS program

DIRECTION 1
CLS

PREINPUT "BEGIN:"
POSTINPUT "END:VCARD"
SET FILTER ON

:START
CLS
INPUT data1$
QRCODE 60,20,L,4,A,0,M2, "BEGIN: "+data1$+"END:VCARD"
PRINT 1.1
GOTO START
EOP

-PB-

logo