宇树ROS1开源模型在ROS2中Gazebo中仿真

打印 上一主题 下一主题

主题 947|帖子 947|积分 2841

以GO1为例
1. CMakelists.txt更新语法

  1. cmake_minimum_required(VERSION 3.8)
  2. project(go1_description)
  3. if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
  4.   add_compile_options(-Wall -Wextra -Wpedantic)
  5. endif()
  6. # find dependencies
  7. find_package(ament_cmake REQUIRED)
  8. find_package(rclcpp REQUIRED)
  9. find_package(std_msgs REQUIRED)
  10. find_package(sensor_msgs REQUIRED)
  11. find_package(gazebo_ros REQUIRED)
  12. find_package(xacro REQUIRED)
  13. # 安装URDF和Xacro文件
  14. install(DIRECTORY
  15.   urdf/
  16.   DESTINATION share/${PROJECT_NAME}/urdf
  17. )
  18. # 安装启动文件
  19. install(DIRECTORY
  20.   launch/
  21.   DESTINATION share/${PROJECT_NAME}/launch
  22. )
  23. ament_package()
复制代码
2. packge.xml更新语法

  1. <?xml version="1.0"?>
  2. <package format="3">
  3.     <name>go1_description</name>
  4.     <version>0.0.0</version>
  5.     <description>The go1_description package</description>
  6.     <maintainer email="laikago@unitree.cc">unitree</maintainer>
  7.     <license>TODO</license>
  8.   <buildtool_depend>ament_cmake</buildtool_depend>
  9.   <depend>rclcpp</depend>
  10.   <depend>std_msgs</depend>
  11.   <depend>sensor_msgs</depend>
  12.   <depend>gazebo_ros</depend>
  13.   <depend>xacro</depend>
  14.   <test_depend>ament_lint_auto</test_depend>
  15.   <test_depend>ament_lint_common</test_depend>
  16.   <export>
  17.     <build_type>ament_cmake</build_type>
  18.   </export>
  19. </package>
复制代码
3. 新建launch文件

  1. import os
  2. from launch import LaunchDescription
  3. from launch.actions import DeclareLaunchArgument, IncludeLaunchDescription
  4. from launch.launch_description_sources import PythonLaunchDescriptionSource
  5. from launch.substitutions import Command, LaunchConfiguration, PathJoinSubstitution
  6. from launch_ros.actions import Node
  7. from ament_index_python.packages import get_package_share_directory
  8. def generate_launch_description():
  9.     pkg_path = get_package_share_directory('go1_description')
  10.    
  11.     # 使用xacro命令生成URDF
  12.     xacro_file = os.path.join(pkg_path, 'xacro', 'robot.xacro')
  13.     robot_description = Command(['xacro ', xacro_file])
  14.     # 启动Gazebo
  15.     gazebo = IncludeLaunchDescription(
  16.         PythonLaunchDescriptionSource([os.path.join(
  17.             get_package_share_directory('gazebo_ros'), 'launch', 'gazebo.launch.py'
  18.         )])
  19.     )
  20.     # 发布机器人状态
  21.     robot_state_publisher_node = Node(
  22.         package='robot_state_publisher',
  23.         executable='robot_state_publisher',
  24.         output='both',
  25.         parameters=[{'robot_description': robot_description}]
  26.     )
  27.     # 在Gazebo中生成实体
  28.     spawn_entity = Node(
  29.         package='gazebo_ros',
  30.         executable='spawn_entity.py',
  31.         arguments=['-topic', 'robot_description', '-entity', 'my_robot'],
  32.         output='screen'
  33.     )
  34.     return LaunchDescription([
  35.         DeclareLaunchArgument(
  36.             'world',
  37.             default_value='worlds/empty.world'
  38.         ),
  39.         gazebo,
  40.         robot_state_publisher_node,
  41.         spawn_entity,
  42.     ])
复制代码
4. colcon编译包

  1. cd ~/suo/unitree_ros/robots/go1_description
  2. colcon build --packages-select go1_description
  3. source install/setup.bash
复制代码

5. 启动仿真

  1. ros2 launch go1_description spawn_robot.launch.py
复制代码

6. 终极效果



免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

悠扬随风

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表