Installation manual
CNC 8055
CNC 8055i
CUSTOMIZABLE SCREENS
15.
SOFT: V02.2X
·599·
Key words
;(FORMAT W8,LEDBARDEC)
It must be used with Ledbar type (W) data that have a decimal variable associated with them. (For
example: X axis following error).
The values assigned, at the PLC, to the end and intermediate values of a LEDBAR element must
be integer values and must be related to the variable associated at the CNC.
When the associated variable has a decimal format the following instruction must be used:
;(FORMAT W8,LEDBARDEC)
This instruction is used to convert coordinate values (decimal) to integer values by multiplying them
by 10000
Examples:
To represent the % of axis feedrate, the FRO variable is used. The FRO values are integers (between
0 and 120) and, therefore, do not require LEDBARDEC.
;(AUTOREFRESH W9=FRO)
On the other hand, to represent the amount of following error on the X axis, the FLWEX variable
is used. The values of FLWEX are not integers and, therefore, require LEDBARDEC (multiplying
it by 10000) in order to make them integers.
;(FORMAT W11,LEDBARDEC)
;(AUTOREFRESH W11=FLWEX)