Robotics StackExchange | Archived questions

How to move the robots directly (without any trajectory planning) to the desired angle position in moveit_commander python interface?

Hello I am using moveit_commander python interface for moving a UR5 robot to the desired joint angle position. Whenever I give a new joint angle to the robot, the moveit python interface takes some time (because of the trajectory planning) in moving to the desired angle position, Is there any way (internally) to bypass this mechanism of trajectory planning by moveit so that when I give a new joint angle position to the robot it directly goes to the given position?

Asked by mkb_10062949 on 2019-11-16 14:33:30 UTC

Comments

Answers

This functionality doesn't currently exist in moveit, but it is being implemented.

As a workaround if you want an extremely simple PTP-like function, simply assemble a trajectory with the start and end points in joint space yourself, use one of the time parameterization methods to time it, and then pass it to the move group to execute it.

Asked by fvd on 2020-02-29 13:44:53 UTC

Comments