I am considering real-time robot control using a camera with the Python API. Is there a way to change the target during robot movement using MoveL(target, block=False)? Currently, Robot is repeating movement and stop actions because the next action starts after MoveL is completed. Please let me know if there is a way to achieve smooth motion.
To make the robot move to new targets it is better to create a new target and a new program that moves to the position you want to move to. When the program completes you can delete the target and/or the program.
You should also be able to move the robot directly to a given pose without having to create a program.
Thank you for your response.
First I want to be able to move on the x, y axis while I press the arrows on my keyboard.
To achieve this, do I create a new target and move program and repeat running this program?
Please let me know if you have a minimum program that can be used as a reference.