![](https://pdfstore-manualsonline.prod.a.ki/pdfasset/3/8d/38d56254-54fe-46e3-85ae-d3f5260e1091/38d56254-54fe-46e3-85ae-d3f5260e1091-bg159.png)
FX Series Programmable Controllers Points Of Technique 10
10-5
10.6 Using Battery Backed Devices
For Maximum Advantage
Batter
backed devices retain their status durin
a PLC power down. These devices can be
used for maximum advanta
e b
allowin
the PLC to continue from its last operation status
ust before the power failure.
For example: A table traverse s
stem is operatin
, movin
alternativel
between two limit
switches. If a PLC power failure occurs durin
the traversin
the machine will stop.
Ideall
, once the PLC re
ains its power the s
stem should continue from where it left off, i.e. if
the movement direction was to the left before the power down, it should continue to the left
after the restoration of the power.
Explanation:
The status of the latched devices (in this example FX M coils M600 and M601) is retained
durin
the power down. Once the power is restored the batter
backed M coils latch
themselves in a
ain, i.e. the load M600 is used to drive M600.
10.7 Indexing Through Multiple
Display Data Values
Man
users unwaril
fall in to the trap of onl
usin
a sin
le seven se
ment displa
to displa
onl
a sin
le data value. This ver
simple combination of applied instructions shows how a
user can 'pa
e' throu
h multiple data values displa
in
each in turn.
Explanation:
The contents of 10
counters are displa
ed in
a sequential, 'pa
ed'
operation.
The pa
in
action occurs
ever
time the input X11 is
received.
What actuall
hap-pens is
that the index re
ister Z is
continuall
incremented
until it equals 9. When this happens the comparison instruction drives M1 ON which in turn
resets the current value of Z to 0 (zero). Hence, a loop effect is created with Z var
in
between
fixed values of 0 and 9 (10 values). The Z value is used to select the next counter to be
displa
ed on the seven se
ment displa
.
This is because the Z index modifier is used to offset the counter bein
read b
the BCD output
instruction.
X0
X1
M600
M601
X0
M601
X1
M600
Limit switch X0 Limit switch X1
Reciprocating
table
Motor driven
indirectly by
M600 and M601
Ri
ht
traverse
Left
traverse
X10
X11
M 1
MOVP
K0
Z
CMPP K9 Z
BCDP
M0
Z
C 0 Z K4 Y0
INC P
M10
M11
M 1
MOV K0 Z
CMP K9 Z
BCD
M0
Z
C 0 Z K4 Y0
INC
X11
PLS M11
X10
PLS M10
C 0
C 1
C 2
C 3
C 4
C 5
C 6
C 7
C 8
C 9
Z=0
Z=1
Z=2
Z=3
Z=4
Z=5
Z=6
Z=7
Z=8
Z=9
K4 Y0
FX version of program
FX
0
/FX
0N
version of
program
Operation