ROS程序设计系列 - 5.实例helloworld

2024-09-05 08:52

本文主要是介绍ROS程序设计系列 - 5.实例helloworld,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

ROS程序设计系列 - 5.实例helloworld

  • 1. 源由
  • 2. 步骤
    • Step 1:安装ROS系统
    • Step 2:创建框架工程
    • Step 3:检查工程结构
    • Step 4:创建CPP文件
    • Step 5:修改配置文件
    • Step 6:编译工程
  • 3. 测试
    • Step 1: 启动ROS Core
    • Step 2: 启动Hello程序
  • 4. 总结
  • 5. 参考资料
  • 6. 补充

1. 源由

在做《Ardupilot开源飞控之FollowMe验证平台搭建》时,涉及到MAVLinkVINS-Monoego-Planner的消息转换问题。

为此,我们结合前面关于ROS的编程的基础知识,完成uav_mavlink框架工程。

  • 【1】ROS程序设计系列 - 1.ROS介绍
  • 【2】ROS程序设计系列 - 2.ROS Package
  • 【3】ROS程序设计系列 - 3.ROS Tools
  • 【4】ROS程序设计系列 - 4.ROS Programming

2. 步骤

Step 1:安装ROS系统

略,详见:Linux 35.5 + JetPack v5.1.3@ros-noetic安装

Step 2:创建框架工程

$ cd ~
$ mkdir -p catkin_ws/src
$ cd catkin_ws/src
$ catkin_create_pkg  hello std_msgs  roscpp  rospy
Created file hello/package.xml
Created file hello/CMakeLists.txt
Created folder hello/include/hello
Created folder hello/src
Successfully created files in /home/daniel/catkin_ws/src/hello. Please adjust the values in package.xml.

Step 3:检查工程结构

此时没有任何代码文件,仅仅一个hello工程。

$ tree catkin_ws/
catkin_ws/
└── src└── hello├── CMakeLists.txt├── include│   └── hello├── package.xml└── src5 directories, 2 files

Step 4:创建CPP文件

创建hello.cpp,并打印"hello,ROS!"

$ cd ~/catkin_ws/src/hello/src
$ vi hello.cpp
$ cat hello.cpp
#include<ros/ros.h>int main(int argc,char **argv){   ros::init(argc,argv,"hello_ros");   ros::NodeHandle nh;   ROS_INFO_STREAM("hello,ROS!");}

Step 5:修改配置文件

鉴于创建应用程序,需要设置可执行代码和编译链接。

vi CMakeLists.txt修改下面两行代码:

  1. add_executable(${PROJECT_NAME} src/hello.cpp)
  2. target_link_libraries(${PROJECT_NAME} ${catkin_LIBRARIES})

Step 6:编译工程

$ cd ~/catkin_ws
$ $ catkin_make
Base path: /home/daniel/catkin_ws
Source space: /home/daniel/catkin_ws/src
Build space: /home/daniel/catkin_ws/build
Devel space: /home/daniel/catkin_ws/devel
Install space: /home/daniel/catkin_ws/install
####
#### Running command: "cmake /home/daniel/catkin_ws/src -DCATKIN_DEVEL_PREFIX=/home/daniel/catkin_ws/devel -DCMAKE_INSTALL_PREFIX=/home/daniel/catkin_ws/install -G Unix Makefiles" in "/home/daniel/catkin_ws/build"
####
-- The C compiler identification is GNU 9.4.0
-- The CXX compiler identification is GNU 9.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Using CATKIN_DEVEL_PREFIX: /home/daniel/catkin_ws/devel
-- Using CMAKE_PREFIX_PATH: /opt/ros/noetic
-- This workspace overlays: /opt/ros/noetic
-- Found PythonInterp: /usr/bin/python3 (found suitable version "3.8.10", minimum required is "3")
-- Using PYTHON_EXECUTABLE: /usr/bin/python3
-- Using Debian Python package layout
-- Found PY_em: /usr/lib/python3/dist-packages/em.py
-- Using empy: /usr/lib/python3/dist-packages/em.py
-- Using CATKIN_ENABLE_TESTING: ON
-- Call enable_testing()
-- Using CATKIN_TEST_RESULTS_DIR: /home/daniel/catkin_ws/build/test_results
-- Forcing gtest/gmock from source, though one was otherwise available.
-- Found gtest sources under '/usr/src/googletest': gtests will be built
-- Found gmock sources under '/usr/src/googletest': gmock will be built
-- Found PythonInterp: /usr/bin/python3 (found version "3.8.10")
-- Found Threads: TRUE
-- Using Python nosetests: /usr/bin/nosetests3
-- catkin 0.8.10
-- BUILD_SHARED_LIBS is on
-- BUILD_SHARED_LIBS is on
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- ~~  traversing 1 packages in topological order:
-- ~~  - hello
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- +++ processing catkin package: 'hello'
-- ==> add_subdirectory(hello)
-- Configuring done
-- Generating done
-- Build files have been written to: /home/daniel/catkin_ws/build
####
#### Running command: "make -j6 -l6" in "/home/daniel/catkin_ws/build"
####
Scanning dependencies of target hello
[ 50%] Building CXX object hello/CMakeFiles/hello.dir/src/hello.cpp.o
[100%] Linking CXX executable /home/daniel/catkin_ws/devel/lib/hello/hello
[100%] Built target hello

3. 测试

Step 1: 启动ROS Core

启动一个ssh终端,执行以下命令:

$ cd ~/catkin_ws
$ source devel/setup.bash
$ roscore
... logging to /home/daniel/.ros/log/ac6ae1f0-6a8d-11ef-a182-200b7460c5b7/roslaunch-daniel-nvidia-15800.log
Checking log directory for disk usage. This may take a while.
Press Ctrl-C to interrupt
Done checking log file disk usage. Usage is <1GB.started roslaunch server http://daniel-nvidia:38431/
ros_comm version 1.16.0SUMMARY
========PARAMETERS* /rosdistro: noetic* /rosversion: 1.16.0NODESauto-starting new master
process[master]: started with pid [15808]
ROS_MASTER_URI=http://daniel-nvidia:11311/setting /run_id to ac6ae1f0-6a8d-11ef-a182-200b7460c5b7
process[rosout-1]: started with pid [15818]
started core service [/rosout]

Step 2: 启动Hello程序

启动一个ssh终端,执行以下命令:

$ cd ~/catkin_ws
$ source devel/setup.bash
$ rosrun hello hello
[ INFO] [1725434226.570962424]: hello,ROS!

4. 总结

上述方式就是类似《Linux应用程序之Helloworld入门》的第一步。

希望上述简单例程能够为后续uav_mavlink代码建立一个基础框架。

$ tree catkin_ws/
catkin_ws/
└── src└── hello├── CMakeLists.txt├── include│   └── hello├── package.xml└── src└── hello.cpp

注:示例代码下载链接。

5. 参考资料

【1】ROS程序设计系列 - 1.ROS介绍
【2】ROS程序设计系列 - 2.ROS Package
【3】ROS程序设计系列 - 3.ROS Tools
【4】ROS程序设计系列 - 4.ROS Programming

6. 补充

如果对ROS编程想进一步深入,可以考虑看下笔者正在进行的一个简单mavlink桥接的代码(从CPP转换到ROS工程,并进行适当的灵活配置和代码重构)。

  • uav_mavlink

在这里插入图片描述

这篇关于ROS程序设计系列 - 5.实例helloworld的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1138495

相关文章

C# WinForms存储过程操作数据库的实例讲解

《C#WinForms存储过程操作数据库的实例讲解》:本文主要介绍C#WinForms存储过程操作数据库的实例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、存储过程基础二、C# 调用流程1. 数据库连接配置2. 执行存储过程(增删改)3. 查询数据三、事务处

springboot security验证码的登录实例

《springbootsecurity验证码的登录实例》:本文主要介绍springbootsecurity验证码的登录实例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录前言代码示例引入依赖定义验证码生成器定义获取验证码及认证接口测试获取验证码登录总结前言在spring

tomcat多实例部署的项目实践

《tomcat多实例部署的项目实践》Tomcat多实例是指在一台设备上运行多个Tomcat服务,这些Tomcat相互独立,本文主要介绍了tomcat多实例部署的项目实践,具有一定的参考价值,感兴趣的可... 目录1.创建项目目录,测试文China编程件2js.创建实例的安装目录3.准备实例的配置文件4.编辑实例的

python+opencv处理颜色之将目标颜色转换实例代码

《python+opencv处理颜色之将目标颜色转换实例代码》OpenCV是一个的跨平台计算机视觉库,可以运行在Linux、Windows和MacOS操作系统上,:本文主要介绍python+ope... 目录下面是代码+ 效果 + 解释转HSV: 关于颜色总是要转HSV的掩膜再标注总结 目标:将红色的部分滤

Spring 中使用反射创建 Bean 实例的几种方式

《Spring中使用反射创建Bean实例的几种方式》文章介绍了在Spring框架中如何使用反射来创建Bean实例,包括使用Class.newInstance()、Constructor.newI... 目录1. 使用 Class.newInstance() (仅限无参构造函数):2. 使用 Construc

MyBatis-Plus中Service接口的lambdaUpdate用法及实例分析

《MyBatis-Plus中Service接口的lambdaUpdate用法及实例分析》本文将详细讲解MyBatis-Plus中的lambdaUpdate用法,并提供丰富的案例来帮助读者更好地理解和应... 目录深入探索MyBATis-Plus中Service接口的lambdaUpdate用法及示例案例背景

MyBatis-Plus中静态工具Db的多种用法及实例分析

《MyBatis-Plus中静态工具Db的多种用法及实例分析》本文将详细讲解MyBatis-Plus中静态工具Db的各种用法,并结合具体案例进行演示和说明,具有很好的参考价值,希望对大家有所帮助,如有... 目录MyBATis-Plus中静态工具Db的多种用法及实例案例背景使用静态工具Db进行数据库操作插入

Spring中@Lazy注解的使用技巧与实例解析

《Spring中@Lazy注解的使用技巧与实例解析》@Lazy注解在Spring框架中用于延迟Bean的初始化,优化应用启动性能,它不仅适用于@Bean和@Component,还可以用于注入点,通过将... 目录一、@Lazy注解的作用(一)延迟Bean的初始化(二)与@Autowired结合使用二、实例解

前端原生js实现拖拽排课效果实例

《前端原生js实现拖拽排课效果实例》:本文主要介绍如何实现一个简单的课程表拖拽功能,通过HTML、CSS和JavaScript的配合,我们实现了课程项的拖拽、放置和显示功能,文中通过实例代码介绍的... 目录1. 效果展示2. 效果分析2.1 关键点2.2 实现方法3. 代码实现3.1 html部分3.2

mysqld_multi在Linux服务器上运行多个MySQL实例

《mysqld_multi在Linux服务器上运行多个MySQL实例》在Linux系统上使用mysqld_multi来启动和管理多个MySQL实例是一种常见的做法,这种方式允许你在同一台机器上运行多个... 目录1. 安装mysql2. 配置文件示例配置文件3. 创建数据目录4. 启动和管理实例启动所有实例