MoveIt is a software that incorporates the latest advances in motion planning, manipulation, 3D perception, kinematics, and navigation. The control part in MoveIt is a bit lacking compared to state of the art QP solution. Still, MoveIt can compute trajectories avoiding obstacles and ensuring the respect of the robot kinematic constraint. This is particulary interesting for projects such as the instrumented glovebox.
This package uses moveit functions to expose a moveit trajectory. By default moveit doesn’t provide a trajetory as an object that can be called for any time step along a path. Instead it sends a trajectory_msgs with waypoints specifying a target position, velocity and acceleration. For the control tools developped by Auctus this is an issue as a trajectory must be callable for any time step.
This package uses an action server to get a trajectory_msgs planned by MoveIt and uses toppra tools to define a trajectory that can be called for any time. This action server is called by a moveit controller manager node.
The trajectory object is created inside the robot control loop (see https://gitlab.inria.fr/auctus-team/components/robots/panda/panda_qp_control for example) and an updateTrajectory() function can be run periodically. You can specify the time increment of the trajectory with the setTrajectoryTimeIncrement() function. A separate thread is launched to run the action server.
The controller is used seamlessly inside moveit. Examples of how to define trajectories are presented in the test folder.
ADD VIDEO
Test must be made to verify the ability to detect obstacle and avoid them using moveit with the QP controller. To do so a proper calibration of the camera position relatively to the robot needs to be done.
This package is open source and can be found here