命令行发布cmd_vel话题
时间: 2023-04-04 10:03:47 浏览: 218
话题和消息结构的转换odom2current_pose和current_velocity2cmd_vel
可以使用以下命令行发布cmd_vel话题:
rostopic pub /cmd_vel geometry_msgs/Twist '{linear: {x: 0.1, y: 0, z: 0}, angular: {x: 0, y: 0, z: 0.1}}'
这将发布一个线速度为0.1,角速度为0.1的Twist消息到/cmd_vel话题。
阅读全文