Installation guide

140 Programming Commands
PRINT String Manipulating
ACTION: Transmits designated data via the designated serial port.
PROGRAM SYNTAX: PRINT#1,[expression][, or ;][expression][, or ;]
PRINT#2,[expression][, or ;][expression][, or ;]
REMARKS: Port 1 is the Host port and Port 2 is the Auxiliary Port.
expression can be an variable, parameter, string variable or Literal
string. Literal strings must be enclosed in quotation marks.
If a comma "," is used between expressions five spaces will separate
expressions.
If a semicolon ";" is used between expressions there will be no space
between expressions.
Up to 20 expressions can be used with one PRINT command.
If a semicolon ";" is used at the end of the PRINT command, no car-
riage-return/line-feed sequence will be generated.
EXAMPLES: ACCEL(2)=10.5
DECEL(2)=2.1
PRINT#1,”accel(2)= “;ACCEL(2),”decel(2)= “;DECEL(2)
‘ Host port out ”accel(2)= 10.5 decel(2)= 2.1” <cr> <lf>
ACCEL(2)=10.5
DECEL(2)=2.1
PRINT#2,”accel(2)= “;ACCEL(2),”decel(2)= “;DECEL(2)
‘Auxiliary port out ”accel(2)= 10.5 decel(2)= 2.1” <cr> <lf>
ACCEL(2)=10.5
DECEL(2)=2.1
PRINT#2,”accel(2)= “;ACCEL(2),”decel(2)= “;DECEL(2);
‘ Auxiliary port out ”accel(2)= 10.5 decel(2)= 2.1”