Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 7128
Chapter 2 Program Instructions
INPUT ON/OFF
Field of Application
Statement enabling or disabling the Intermec Direct Protocol.
Syntax INPUT ON|OFF
Default: INPUT OFF
Remarks
These statements are used to enter or leave the Intermec Direct Protocol. Also
refer to Intermec Direct Protocol v7.50, Programmers Guide.
INPUT ON Enables the Intermec Direct Protocol:
- Enables reception of input data to a stored layout
- Starts the error handler
- Sets the verbosity to off (SYSVAR (18) = 0)
- Shows Direct Protocol 7.50 in the display
INPUT OFF Disables the Intermec Direct Protocol:
- Disables reception of input data to a stored layout
- Stops the error handler
- Resets the verbosity to the level selected before last
INPUT ON was executed
- Shows Fingerprint 7.50 in the display
The following instructions will only work with the Intermec Direct Protocol,
that is after a INPUT ON statement has been executed:
COUNT& ERROR FORMAT INPUT
INPUT OFF LAYOUT END LAYOUT INPUT
LAYOUT RUN PRINT KEY ON|OFF
Example
This example illustrates how the Intermec Direct Protocol is enabled, how
new separators are speci ed, how a layout is stored in the printers memory,
how variable data are combined with the layout, and how a label is printed.
Finally, the Intermec Direct Protocol is disabled:
INPUT ON
FORMAT INPUT "#","@","&"
LAYOUT INPUT "tmp:LABEL1"
FT "Swiss 721 BT"
PP 100,250
PT VAR1$
PP 100,200
PT VAR2$
LAYOUT END
LAYOUT RUN "tmp:LABEL1"
#Line number 1&Line number 2&@
PF
INPUT OFF