O
pe
ra
to
r
P
an
el
E
xa
m
ple
s
5--7
Programming Examples
This example uses a floating point number in the third line display. The bottom line
uses data display message #7, which has been configured as a floating point display
message. Since the data is a floating point number, it uses two 16-bit registers. The
two registers have to be looked at together, not individually, for the data to be
understandable. In this example, the data is a constant number (168932) which is
loaded into the bottom line data display registers using an LDR (load real number)
instruction. The second line is text message #8.
C102
This selects message #140 to blank the top and
bottom lines.
This selects message #8 to be displayed in the
second line.
This puts the floating point number into third line
data field. Notice that the displayed value is
truncated.
Process Step 1
Avg Part/Hr +1.68E+05
LD
K140
OUT
V2000
OUT
V2003
LD
K8
OUT
V2001
LD
K7
OUT
V2002
LDR
R168932
OUTD
V2010
This selects message #7 to be displayed in the
third line.
V2000
V2001
V2002
V2003
V2004
V2005
V2006
V2007
V2010
V2011
V2012
V2013
Top line message selection
Second line message selection
Bottom line message selection
Top line data
Top line data 2
Third line message selection
Second line data
Second line data 2
Third line data
Third line data 2
Bottom line data
Bottom line data 2
Displaying
Floating Point
Numbers
Example 1
StockCheck.com