ROS基础教学讲解课件.ppt

上传人(卖家):ziliao2023 文档编号:5962083 上传时间:2023-05-19 格式:PPT 页数:22 大小:1.17MB
下载 相关 举报
ROS基础教学讲解课件.ppt_第1页
第1页 / 共22页
ROS基础教学讲解课件.ppt_第2页
第2页 / 共22页
ROS基础教学讲解课件.ppt_第3页
第3页 / 共22页
ROS基础教学讲解课件.ppt_第4页
第4页 / 共22页
ROS基础教学讲解课件.ppt_第5页
第5页 / 共22页
点击查看更多>>
资源描述

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汇报人:肖

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 办公、行业 > 各类PPT课件(模板)
版权提示 | 免责声明

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


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

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


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