PLC 06
// Rung 1
// Address 0
#BEGIN COMMENT
"When the main blower stops it will set C0"
#END
STRND X15
SET C0
// Rung 2
// Address 2
#BEGIN COMMENT
"C0 will be reset when C2 is on, The reset is also performed during a powerup condition. "
"This is because the step will be frozen in the drum where it was. If you want the step to "
"continue then C0 will need to be re addressed to a retentive range and the SP0 will need "
"to be removed. "
""
"C2 is the last item in the second drum"
#END
STR C2
STR X15
AND C1000
ORSTR
OR SP0
RST C0
// Rung 3
// Address 8
#BEGIN COMMENT
"When C0 is on the drum is enabled"
""
"When C0 is first turned on, it jogs the step to step #2"
""
"Step #2 is 7200 seconds "
""
"The drum is reset when C2 is on. C2 is the last item in the second drum. The reset is also "
"performed during a powerup condition. This is because the step will be frozen where it "
"was. If you want the step to continue then C0 will need to be re addressed to a retentive "
"range and the SP0 will need to be removed. "
#END
STR C0
STRPD C0
STR C2
STR X15
AND C1000
ORSTR
OR SP0
EDRUM CT20 K1 K100 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 C1 Y5 Y4 Y3 Y2 Y1 Y0 K1 K7200 K120 K120 K120 K120 K120 K120 K1 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 K0 K0 K8000 K4000 K2000 K1000 K800 K400 K200 K0 K0 K0 K0 K0 K0 K0
// Rung 4
// Address 83
#BEGIN COMMENT
"When C0 and C1 are on this drum is enabled"
""
"When C1 is first turned on the step is jogged to step #2 (this is so the output is not turned "
"on all the time) This must be one of those feature /bug thingys. "
#END
STR C0
AND C1
STRPD C1
STR C2
STR X15
AND C1000
ORSTR
OR SP0
EDRUM CT30 K1 K100 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 C2 Y13 Y12 Y11 Y10 Y7 Y6 K1 K60 K60 K60 K60 K60 K60 K60 K60 K60 K60 K60 K1 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 DEF0 K0 K8000 K0 K4000 K0 K2000 K0 K1000 K0 K800 K0 K400 K200 K0 K0 K0
// Rung 5
// Address 159
END
// Rung 6
// Address 160
NOP
#BEGIN ELEMENT_DOC
"X15","","","main blower aux"
"Y0","shaker#1","",""
"Y1","shaker#2","",""
"Y2","shaker#3","",""
"Y3","shaker#4","",""
"Y4","shaker#5","",""
"Y5","shaker#6","",""
"Y6","ascovalve#1","",""
"Y7","ascovalve#2","",""
"Y10","ascovalve#3","",""
"Y11","ascovalve#4","",""
"Y12","ascovalve#5","",""
"Y13","ascovalve#6","",""
"C0","","","cycle"
"C1","start 2nd drum","",""
"C2","reset, cyc done","",""
"C1000","","","if you want the cycle to shut down whenever the main blower turns on remove this bit but leave the main blower aux "
#END