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