We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VMware ubuntu20 the examples given works well,but my own
"auto pub =n.advertise<trajectory_msgs::JointTrajectory>("trajV_reflexx", 1000); " doesn't work.
"auto pub =n.advertise<trajectory_msgs::JointTrajectory>("trajV_reflexx", 1000); "
while ( ros::ok()) { .... trajectory_msgs::JointTrajectory joint_state; trajectory_msgs::JointTrajectoryPoint joint_state_pt; joint_state_pt.velocities.push_back((*OP->NewVelocityVector)[0]); joint_state.points.push_back(joint_state_pt) ; pub.publish(joint_state); }
rqt throw err: Traceback (most recent call last): File "/opt/ros/noetic/lib/python3/dist-packages/rospy/topics.py", line 748, in _invoke_callback cb(msg, cb_args) File "/home/d/planning/ws_traj/src/rqt_joint_trajectory_plot/src/rqt_joint_trajectory_plot/main_widget.py", line 109, in callback msg = JointTrajectory().deserialize(anymsg._buff) AttributeError: 'JointTrajectory' object has no attribute '_buff'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
VMware ubuntu20
the examples given works well,but my own
"auto pub =n.advertise<trajectory_msgs::JointTrajectory>("trajV_reflexx", 1000); "
doesn't work.
rqt throw err: Traceback (most recent call last): File "/opt/ros/noetic/lib/python3/dist-packages/rospy/topics.py", line 748, in _invoke_callback cb(msg, cb_args) File "/home/d/planning/ws_traj/src/rqt_joint_trajectory_plot/src/rqt_joint_trajectory_plot/main_widget.py", line 109, in callback msg = JointTrajectory().deserialize(anymsg._buff) AttributeError: 'JointTrajectory' object has no attribute '_buff'
The text was updated successfully, but these errors were encountered: