书签 分享 收藏 举报 版权申诉 / 22
上传文档赚钱

类型ROS基础教学讲解课件.ppt

  • 上传人(卖家):ziliao2023
  • 文档编号:5962083
  • 上传时间:2023-05-19
  • 格式:PPT
  • 页数:22
  • 大小:1.17MB
  • 【下载声明】
    1. 本站全部试题类文档,若标题没写含答案,则无答案;标题注明含答案的文档,主观题也可能无答案。请谨慎下单,一旦售出,不予退换。
    2. 本站全部PPT文档均不含视频和音频,PPT中出现的音频或视频标识(或文字)仅表示流程,实际无音频或视频文件。请谨慎下单,一旦售出,不予退换。
    3. 本页资料《ROS基础教学讲解课件.ppt》由用户(ziliao2023)主动上传,其收益全归该用户。163文库仅提供信息存储空间,仅对该用户上传内容的表现方式做保护处理,对上传内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(点击联系客服),我们立即给予删除!
    4. 请根据预览情况,自愿下载本文。本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
    5. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007及以上版本和PDF阅读器,压缩文件请下载最新的WinRAR软件解压。
    配套讲稿:

    如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。

    特殊限制:

    部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。

    关 键  词:
    ROS 基础 教学 讲解 课件
    资源描述:

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

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

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

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

    5、程2023-5-19.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模型文件 urdf/#urdf文件 launch/#launc

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

    7、ring、time、duration、header、可变长数组array、固定长度数组arrayC2023-5-19.132023-5-19.142023-5-19.15回顾:ROS的定义Linux操作系统ROS开发环境Hans CuteHans CuteTurtleBot2TurtleBot22023-5-19.16ROS controller2023-5-19.17urdf和xarcoUnified Robot Description Format,统一机器人描述格式,简称为URDF。ROS中的urdf功能包包含一个URDF的C+解析器,URDF文件使用XML格式描述机器人模型。robot

    8、: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 robot,the the robot,the linkslinks,

    9、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=.2023-5-19.18 The The Visual Visual section represents the real link of the robot,and section represents the real link of the robot,and the area surrounding the real link i

    10、s 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 the real link.before hitting the real link.link name=link name=.

    11、robot name=robot name=.2023-5-19.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,revolute,continuous,prismatic,fixed,floating,floating,andand planar planar robot name=robot name=.joint name=joint name=2023-5-19.20link name=link name=.robot name=robot name=.joint name=joint name=2023-5-19.21学习Moveit和navigation包1.ROS环境自动将机器人的串口信息解析成话题信息;2.创建节点和发布话题;3.构建自定义机器人 的模型-urdf和xarco文件4.根据urdf和xarco文件,创建moveit包和navigation包2023-5-19.22汇报人:肖

    展开阅读全文
    提示  163文库所有资源均是用户自行上传分享,仅供网友学习交流,未经上传用户书面授权,请勿作他用。
    关于本文
    本文标题:ROS基础教学讲解课件.ppt
    链接地址:https://www.163wenku.com/p-5962083.html

    Copyright@ 2017-2037 Www.163WenKu.Com  网站版权所有  |  资源地图   
    IPC备案号:蜀ICP备2021032737号  | 川公网安备 51099002000191号


    侵权投诉QQ:3464097650  资料上传QQ:3464097650
       


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

    163文库