Issue
How to use Plain English programming to mirror the output controlling the door's striker to a second output on the Continuum controller.
Product Line
Andover Continuum
Environment
- Continuum Net Controller II
- Continuum ACX 2 Controller
Cause
Sample PE program needed for guidance.
Resolution
Here are three samples of the same program for guidance on how to accomplish the desired application
'This program makes the Auxiliary output of the AC1 (Out chan 2) mirror the value of the output that controls the door
'striker (Out chan 1)
'Program is Looping/Autostart
'The MODE variable is used to control when Out2 should mirror Out1 as follows...
'
'1=Always including manual override
'2=On valid card or REX only
Numeric MODE
Line Init
AuxOutput = 0
MODE = 2
Basedon MODE Goto Always, ValidAndRex
Line Always
AuxOutput = Door1 OverrideValue * 65535
Line ValidAndRex
AuxOutput = Door1 * 65535
Line E
If TS > 10 then Goto Init
Program code has also been supplied in the attached dump file below.