Internet PLC Forum
General => Technical support => Topic started by: skj1402 on October 22, 2005, 08:25:52 AM
-
Is it possible to control a sequencer from within a cusfn routine?
I need to reset a sequencer back to level 1 if a certain logical condition is met from within a custom function. Any example would be appreciated. Thanks!
-
Yes, the step counter for Sequencer is the counter #1 to #8, so to change the step for Seq1, just reassign CTRPV[1] to a new value:
CTRPV[1] = 1 ' to change it to step one.
-
Thanks for the quick reply and for the solution!