- 1、本文档共12页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
;
学习任务2:键盘控制
1.代码讲解
2.实际操作
3.视频演示;
1代码讲解
?键盘控制程序使用的是raceworld1场景,由raceworld1.launch文件启动。找到/root/aliyun_demo/src/raceworld/launch文件夹中的raceworld1.launch文件并打开。
?在launch文件内加载了多个控制器,其中left_rear_wheel_velocity_controller,right_rear_wheel_velocity_controller,left_front_wheel_velocity_controller,right_front_wheel_velocity_controller,left_steering_hinge_position_controller和right_steering_hinge_position_controller接收ROS消息,分别控制了左右后轮速度,左右前轮速度和转向角度。
nodename=controller_managerpkg=controller_managertype=spawner;
?在加载控制器代码的下面,调用了一个名为servo_comannds1.py的代码文件。
nodepkg=raceworldtype=servo_commands1.pyname=servo_commandsoutput=screen
?打开/root/aliyun_demo/src/raceworld/scripts文件夹中的servo_comannds1.py文件我们可以看到,代码中新建了一个名为servo_comannds的节点,订阅并接收/deepracer1/ackermann_cmd_mux/output消息。
defservo_commands():
globalflag_move
rospy.init_node(servo_commands,anonymous=True)
rospy.Subscriber(/deepracer1/ackermann_cmd_mux/output,AckermannDriveStamped,set_thro
ttle_steer)
rospy.spin();
?在接收到AckermannDriveStamped类型消息后经过适当的转换,将速度和转向信息发布给之前所述六个控制器。
defset_throttle_steer(data):
globalflag_move
pub_vel_left_rear_wheel=rospy.Publisher(/deepracer1/left_rear_wheel_velocity_controller/command,Float64,queue_size=1)
pub_vel_right_rear_wheel=rospy.Publisher(/deepracer1/right_rear_wheel_velocity_controller/command,Float64,queue_size=1)
pub_vel_left_front_wheel=rospy.Publisher(/deepracer1/left_front_wheel_velocity_controller/command,Float64,queue_size=1)
pub_vel_right_front_wheel=rospy.Publisher(/deepracer1/right_front_wheel_velocity_controller/command,Float64,queue_size=1)
pub_pos_left_steering_hinge=rospy.Publisher(/deepracer1/left_steering_hinge_position_controller/command,Float64,queue_size=1)
pub_pos_right_steering_hinge=rospy.Publisher(/deepracer1/right_steering_hinge_position_controller/command,Float64,queue_size=1)
throttle=data.drive.speed*28
print(Throttle:,throttle)
steer=data.drive.steering_angle
print(Steer:,steer)
pub_vel
您可能关注的文档
- 智能网联汽车计算平台部署与测试 课件 第1章 无人驾驶系统实现 .pptx
- 智能网联汽车计算平台部署与测试 课件 第2章 ROS 系统.pptx
- 智能网联汽车计算平台部署与测试 课件 第3章 ROS 编程.pptx
- 智能网联汽车计算平台部署与测试 课件 第5章 无人驾驶汽车的架构建模与代码生成.pptx
- 智能网联汽车计算平台部署与测试 课件 学习任务1:消息发布与订阅.pptx
- 智能网联汽车计算平台部署与测试 课件全套 于万海 第1--5章 无人驾驶系统实现 --- 无人驾驶汽车的架构建模与代码生成+学习任务1、2.pptx
- 建筑力学与结构 第5版 课后客观题答案.docx
- 建筑力学与结构第5版 习题答案 习题.pdf
- 建筑力学与结构第5版 习题答案 项目4习题答案.docx
- 建筑力学与结构第5版 习题答案 项目5 习题答案.docx
文档评论(0)