ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
The simplest way is to do this is to not use moveit: manually create a trajectory_msgs/JointTrajectory
message, then use an action client to pass the message to the follow_joint_trajectory
action server.
If you insist on using the moveit API, which will require more work on your part, manually create a moveit::planning_interface::MoveGroup::Plan
object and then call execute(plan).