ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You can use the MoveGroupCommander.set_planner_id() function for this. Have a look at the API documentation
An example:
group = moveit_commander.MoveGroupCommander("manipulator")
group.set_planner_id("PRMkConfigDefault")
Good luck!