ImageVerifierCode 换一换
格式:PPT , 页数:22 ,大小:1.17MB ,
文档编号:2635787      下载积分:22 文币
快捷下载
登录下载
邮箱/手机:
温馨提示:
系统将以此处填写的邮箱或者手机号生成账号和密码,方便再次下载。 如填写123,账号和密码都是123。
支付方式: 支付宝    微信支付   
验证码:   换一换

优惠套餐
 

温馨提示:若手机下载失败,请复制以下地址【https://www.163wenku.com/d-2635787.html】到电脑浏览器->登陆(账号密码均为手机号或邮箱;不要扫码登陆)->重新下载(不再收费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录  
下载须知

1: 试题类文档的标题没说有答案,则无答案;主观题也可能无答案。PPT的音视频可能无法播放。 请谨慎下单,一旦售出,概不退换。
2: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
3: 本文为用户(三亚风情)主动上传,所有收益归该用户。163文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(点击联系客服),我们立即给予删除!。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

1,本文(ROS基础PPT课件.ppt)为本站会员(三亚风情)主动上传,163文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。
2,用户下载本文档,所消耗的文币(积分)将全额增加到上传者的账号。
3, 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(发送邮件至3464097650@qq.com或直接QQ联系客服),我们立即给予删除!

ROS基础PPT课件.ppt

1、2022-5-12.1湖南大学 电气与信息工程学院2022-5-12.21、ROS的定义Linux操作系统ROS开发环境Hans CuteHans CuteTurtleBot2TurtleBot22022-5-12.3串口协议ROS环境串口协议机械臂1.将机械臂发送上来的信息以话题的形式发布 在ROS环境中如:/joint1_controller/state /claw_controller/state2.将话题信息转换成机械臂所需要的串口信息如:/joint1_controller/command /claw_controller/commmand2022-5-12.4也就是说ROS环境键盘

2、(节点)手柄(节点)平板(节点)机器人底盘(节点)2022-5-12.52、ROS的基本概念1、节点管理器master: master在整个网络通信架构里相当于管理中心,管理着各个node。node首先在master处进行注册,之后master会将该node纳入整个ROS程序中。2、node之间的通信也是先由master进行“牵线”,才能两两的进行点对点通信。2022-5-12.6理解话题(topic)node2master node1注册节点publish topic注册节点 subscribe topic/topic_name/topic_name/topic_name基本的msg包括bo

3、ol、int8、int16、int32、int64(以及uint)、float、float64、string、time、duration、header、可变长数组array、固定长度数组arrayC。topic是ROS中的一种单向的异步通信方式。然而有些时候单向的通信满足不了通信要求,比如当一些节点只是临时而非周期性的需要某些数据,如果用topic通信方式时就会消耗大量不必要的系统资源,造成系统的低效率高功耗。 2022-5-12.7理解服务(service)nodeA(client)nodeB(server)/service/serviceService是同步通信方式,所谓同步就是说,此时N

4、ode A发布请求后会在原地等待reply,直到Node B处理完了请求并且完成了reply,Node A才会继续执行。Node A等待过程中,是处于阻塞状态的成通信。这样的通信模型没有频繁的消息传递,没有冲突与高系统资源的占用,只有接受请求才执行服务,简单而且高效。 2022-5-12.8话题和服务的对比2022-5-12.93、ROS文件系统1、创建工作空间$ mkdir p catkin_ws/src #创建工作空间$ cd catkin_ws #进入工作空间$ catkin_make #编译catkin_ws/src /Cmakelists.txt /build /develcatki

5、n_make的工作流程2022-5-12.10创建package2、创建包$ cd catkin_ws/src #进入工作空间的src下$ catkin_create_pkg package_name std_msgs rospy roscpp catkin_ws/src /package_name / CMakeLists.txt #package的编译规则(必须) package.xml #package的描述信息(必须) src/ #源代码文件 include/ #C+头文件 scripts/ #可执行脚本 msg/ #自定义消息 srv/ #自定义服务 models/ #3D模型文件

6、urdf/ #urdf文件 launch/ #launch文件 2022-5-12.11自定义发布topic/talker/listenerpublishpublish/chatter/chattersubscribesubscribebool、int8、int16、int32、int64、uint、float、float64、string、time、duration、header、可变长数组array、固定长度数组arrayC发布任何名称的话题任意数据:以某一频率2022-5-12.12自定义service/client/server发送请求接收回复bool、int8、int16、int32

7、、int64、uint、float、float64、string、time、duration、header、可变长数组array、固定长度数组arrayC2022-5-12.132022-5-12.142022-5-12.15回顾:ROS的定义Linux操作系统ROS开发环境Hans CuteHans CuteTurtleBot2TurtleBot22022-5-12.16ROS controller2022-5-12.17urdf和xarcoUnified Robot Description Format,统一机器人描述格式,简称为URDF。ROS中的urdf功能包包含一个URDF的C+解析

8、器,URDF文件使用XML格式描述机器人模型。robot: This tag encapsulates the entire robot model that can be robot: This tag encapsulates the entire robot model that can be represented using URDF. Inside the robot tag, we can define the name of represented using URDF. Inside the robot tag, we can define the name of the r

9、obot, the the robot, the linkslinks, and the, and the joints joints of the robot.of the robot.The syntax is as follows:The syntax is as follows:robot name=robot name= . . . . . . . . . . 2022-5-12.18 The The Visual Visual section represents the real link of the robot, and section represents the real

10、 link of the robot, and the area surrounding the real link is the Collision section. The the area surrounding the real link is the Collision section. The CollisionCollision section encapsulates the real link to detect collision section encapsulates the real link to detect collision before hitting th

11、e real link.before hitting the real link. link name=link name= . . . . robot name=robot name= . . . . . . . . . . 2022-5-12.19jointjoint: The joint tag supports the different types of The joint tag supports the different types of joints such as joints such as revolute, continuous, prismatic, fixed,

12、revolute, continuous, prismatic, fixed, floating, floating, andand planar planar robot name=robot name= . . . . . . . . . . joint name=joint name= 2022-5-12.20link name=link name= . . . . robot name=robot name= . . . . . . . . . . joint name=joint name= 2022-5-12.21学习Moveit和navigation包1.ROS环境自动将机器人的串口信息解析成话题信息;2.创建节点和发布话题;3.构建自定义机器人 的模型-urdf和xarco文件4.根据urdf和xarco文件,创建moveit包和navigation包2022-5-12.22汇报人 :肖

侵权处理QQ:3464097650--上传资料QQ:3464097650

【声明】本站为“文档C2C交易模式”,即用户上传的文档直接卖给(下载)用户,本站只是网络空间服务平台,本站所有原创文档下载所得归上传人所有,如您发现上传作品侵犯了您的版权,请立刻联系我们并提供证据,我们将在3个工作日内予以改正。


163文库-Www.163Wenku.Com |网站地图|