9
UBI EasyCoder 301 Direct Protocol – Programmer's Guide Ed. 1
Chapter 3 Principles of Operation
Let us create the simple label shown on the left using both methods:
Immediate Mode:
BF ON:BF "Swiss 721 BT",10,0:PP 10,20:
PX 400,300,10:PP 25,25:PM "ROM:UBI.1":
PP 75,250:BT "CODE39":PB "UBI":PP 75,200:
FT "Swiss 721 BT",10,0:PT "My FIRST label!":
PF ↵
You can also send the same string line by line:
BF ON ↵ (enable bar code interpretation)
BF "Swiss 721 BT",10,0 ↵ (select bar code interpr. font)
PP 10, 20 ↵ (insertion point for box field)
PX 400,300,10 ↵ (create a box)
PP 25,25 ↵ (insertion point for image field)
PM "ROM:UBI.1" ↵ (select image)
PP 75,250 ↵ (insertion point for bar code field)
BT "CODE39" ↵ (select bar code type)
PB "UBI" ↵ (input data to bar code field)
PP 75,200 ↵ (insertion point for text field)
BF "Swiss 721 BT",10,0 ↵ (select font for text field)
PT "My FIRST label!" ↵ (input data to text field)
PF ↵ (print one label)
Layout Mode:
First, create a layout:
LAYOUT INPUT "LABEL1" ↵ (start layout recorder)
BF ON ↵ (enable bar code interpretation)
BF "Swiss 721 BT",10,0 ↵ (select bar code interpr. font)
PP 10,20 ↵ (insertion point for box field)
PX 400,300,10 ↵ (create a box)
PP 25,25 ↵ (insertion point for image field)
PM "ROM:UBI.1" ↵ (select image)
PP 75,250 ↵ (insertion point for bar code field)
BT "CODE39" ↵ (select bar code type)
PB VAR1$ ↵ (variable input data to bar code field)
PP 75,200 ↵ (insertion point for text field)
BF "Swiss 721 BT",10,0 ↵ (select font for text field)
PT VAR2$ ↵
(
variable input data to text field)
LAYOUT END ↵ (save layout)
Note:
If a label has been printed using
a predefined layout and you want
to return to Immediate Mode, the
predefined layout must first be
cleared from the printer's
working memory using the
following command:
LAYOUT RUN ""
2. Sending
Commands, cont'd.