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

以GO1为例

1. CMakelists.txt更新语法

sh 复制代码
cmake_minimum_required(VERSION 3.8)
project(go1_description)
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
  add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(std_msgs REQUIRED)
find_package(sensor_msgs REQUIRED)
find_package(gazebo_ros REQUIRED)
find_package(xacro REQUIRED)

# 安装URDF和Xacro文件
install(DIRECTORY
  urdf/
  DESTINATION share/${PROJECT_NAME}/urdf
)

# 安装启动文件
install(DIRECTORY
  launch/
  DESTINATION share/${PROJECT_NAME}/launch
)

ament_package()

2. packge.xml更新语法

xml 复制代码
<?xml version="1.0"?>
<package format="3">
    <name>go1_description</name>
    <version>0.0.0</version>
    <description>The go1_description package</description>

    <maintainer email="laikago@unitree.cc">unitree</maintainer>
    <license>TODO</license>

  <buildtool_depend>ament_cmake</buildtool_depend>

  <depend>rclcpp</depend>
  <depend>std_msgs</depend>
  <depend>sensor_msgs</depend>
  <depend>gazebo_ros</depend>
  <depend>xacro</depend>

  <test_depend>ament_lint_auto</test_depend>
  <test_depend>ament_lint_common</test_depend>

  <export>
    <build_type>ament_cmake</build_type>
  </export>
</package>

3. 新建launch文件

python 复制代码
import os
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument, IncludeLaunchDescription
from launch.launch_description_sources import PythonLaunchDescriptionSource
from launch.substitutions import Command, LaunchConfiguration, PathJoinSubstitution
from launch_ros.actions import Node
from ament_index_python.packages import get_package_share_directory

def generate_launch_description():
    pkg_path = get_package_share_directory('go1_description')
    
    # 使用xacro命令生成URDF
    xacro_file = os.path.join(pkg_path, 'xacro', 'robot.xacro')
    robot_description = Command(['xacro ', xacro_file])

    # 启动Gazebo
    gazebo = IncludeLaunchDescription(
        PythonLaunchDescriptionSource([os.path.join(
            get_package_share_directory('gazebo_ros'), 'launch', 'gazebo.launch.py'
        )])
    )

    # 发布机器人状态
    robot_state_publisher_node = Node(
        package='robot_state_publisher',
        executable='robot_state_publisher',
        output='both',
        parameters=[{'robot_description': robot_description}]
    )

    # 在Gazebo中生成实体
    spawn_entity = Node(
        package='gazebo_ros',
        executable='spawn_entity.py',
        arguments=['-topic', 'robot_description', '-entity', 'my_robot'],
        output='screen'
    )

    return LaunchDescription([
        DeclareLaunchArgument(
            'world',
            default_value='worlds/empty.world'
        ),
        gazebo,
        robot_state_publisher_node,
        spawn_entity,
    ])

4. colcon编译包

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

5. 启动仿真

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

6. 最终效果

相关推荐
迪捷软件3 天前
基于SkyEye的虚拟CAN总线通信仿真
仿真·can总线仿真
kyle~5 天前
ros_gz_bridge---底层通信的实现
c++·机器人·仿真·ros2
不会武功的火柴5 天前
SystemVerilog语法(7)-接口(interface)
嵌入式硬件·fpga开发·仿真·ic验证·rtl
Ryan-Lily6 天前
内力基于灵敏度的拓扑优化-CAE操作过程
abaqus·仿真
梦道长生8 天前
PX4 + AirSim + QGC 仿真环境搭建笔记
无人机·仿真·px4·qgc·airsim
tokepson8 天前
AirSIM+PX4+QGC无人机仿真环境
无人机·仿真·px4·qgc·airsim
勤自省9 天前
ROS2分布式通信与Launch文件实战:从踩坑到打通(第12-20讲总结)
分布式·ubuntu·ros2·gazebo·launch·rqt·rviz2
WangN212 天前
【SONIC】Isaac Lab 系统入门指南
人工智能·python·机器人·自动驾驶·仿真
NingboWill12 天前
AI日报 - 2026年05月13日
人工智能·快手·ai ppt·宇树
康谋自动驾驶12 天前
缩短40%迁移周期:如何构建具身智能高可靠验证底座?
人工智能·机器人·仿真