Hello,
Is possible to set JUMP to specific line in program?
I need this option after alarm appears.
Best regards.
Hello,
Is possible to set JUMP to specific line in program?
I need this option after alarm appears.
Best regards.
Hello,Is possible to set JUMP to specific line in program?
I need this option after alarm appears.
Best regards.
In short yes with a limit (for example):
IFTHEN I006=1
JUMP *end
ENDIF
....
....
*end
SETUALM 8xxx Sxxx 0
In this case the flag I006 will be your alarm condition and you will jump to end and call an alarm.
If you have an alarm before the jump, the code will stop so you cannot reach the label.
Probably I create a lot of confusion.