- Mastering ROS for Robotics Programming
- Lentin Joseph
- 177字
- 2021-07-30 10:03:24
Creating the ROS package for the robot description
Before creating the URDF file for the robot, let's create a ROS package in the catkin
workspace so that the robot model keeps using the following command:
$ catkin_create_pkg mastering_ros_robot_description_pkg roscpp tf geometry_msgs urdf rviz xacro
The package mainly depends on the urdf
and xacro
packages, and we can create the urdf
file of the robot inside this package and create launch files to display the created urdf
in RViz. The full package is available on the following Git repository, you can clone the repository for a reference to implement this package or you can get the package from the book's source code:
$ git clone https://github.com/qboticslabs/mastering_ros_robot_description_pkg.git
Before creating the urdf
file for this robot, let's create three folders called urdf
, meshes
, and launch
inside the package folder. The urdf
folder can be used to keep the urdf
/xacro
files that we are going to create. The meshes
folder keeps the meshes that we need to include in the urdf
file and the launch
folder keeps the ROS launch files.
- Facebook Application Development with Graph API Cookbook
- 一步一步學Spring Boot 2:微服務項目實戰
- Visual Studio 2012 Cookbook
- 編程的修煉
- 跟“龍哥”學C語言編程
- Java持續交付
- STM32F0實戰:基于HAL庫開發
- 教孩子學編程:C++入門圖解
- concrete5 Cookbook
- 速學Python:程序設計從入門到進階
- 深入實踐Kotlin元編程
- C指針原理揭秘:基于底層實現機制
- Android Studio開發實戰:從零基礎到App上線 (移動開發叢書)
- Three.js權威指南:在網頁上創建3D圖形和動畫的方法與實踐(原書第4版)
- R語言與網站分析