Hello everyone!
(1):
ubuntu@MTlab:~$ rosmsg show control_msgs/FollowJointTrajectoryActionGoal
std_msgs/Header header
uint32 seq
time stamp
string frame_id
actionlib_msgs/GoalID goal_id
time stamp
string id
control_msgs/FollowJointTrajectoryGoal goal
trajectory_msgs/JointTrajectory trajectory
std_msgs/Header header
uint32 seq
time stamp
string frame_id
string[] joint_names
trajectory_msgs/JointTrajectoryPoint[] points
float64[] positions
float64[] velocities
float64[] accelerations
duration time_from_start
control_msgs/JointTolerance[] path_tolerance
string name
float64 position
float64 velocity
float64 acceleration
control_msgs/JointTolerance[] goal_tolerance
string name
float64 position
float64 velocity
float64 acceleration
duration goal_time_tolerance
(2):
rostopic pub -1 /joint_state /control_msgs/FollowJointTrajectoryActionGoal -- '[1, [1, 1], [] ]' '['joint_1', 'joint_2', 'joint_3', 'joint_4', 'joint_5', 'joint_6']' '[-2.0004101276397705, -0.2954617440700531, -2.0417795181274414, 0.9874234199523926, 0.1206984668970108, -1.8074545860290'527]' '[]' '[]'
(1) is the ros message of the trajectory action goal of the joint state.
(2) is the command I wrote in the terminal to publish the information and want to control the robot.
But it shows nothing and getting stuck.
Could anyone help me?