Is it possible to call stopj(a) in threads to stop the motion running in the main program? I am getting
another thread is already controlling the robot error at stopj(80)
thread ControlCommands():
while True:
stop = get_digital_out(1)
if stop:
textmsg("Stopping Control Commands")
stopj(80)
set_digital_out(1, False)
end
end
end
You can’t control the robot movements from within a thread, so I expect that you will need to set a variable or an output which is monitored from the main program which would then trigger the stop.
In the simple example you’ve shown, your code would basically just be in the main program or subprogram instead of within a thread.
If it’s a more complicated situation where you’re decision making needs to be within a thread, you can still set the output or variable from within the thread and monitor it from the main program or subprogram.
It appears you are using script so just move the motion to the thread and have the main program start the thread then monitor for your stop condition then kill the thread and issue stopj command.