- 新增吸盘模型文件 base.obj - 添加多个测试用例 URDF 文件,包括立方体、圆柱体等简单模型 - 创建 jaka_description 包的 CMakeLists.txt 和 display.launch 文件
20 lines
557 B
XML
20 lines
557 B
XML
<launch>
|
|
<include
|
|
file="$(find gazebo_ros)/launch/empty_world.launch" />
|
|
<node
|
|
name="tf_footprint_base"
|
|
pkg="tf"
|
|
type="static_transform_publisher"
|
|
args="0 0 0 0 0 0 base_link base_footprint 40" />
|
|
<node
|
|
name="spawn_model"
|
|
pkg="gazebo_ros"
|
|
type="spawn_model"
|
|
args="-file $(find jaka_description)/urdf/jaka_description.urdf -urdf -model jaka_description"
|
|
output="screen" />
|
|
<node
|
|
name="fake_joint_calibration"
|
|
pkg="rostopic"
|
|
type="rostopic"
|
|
args="pub /calibrated std_msgs/Bool true" />
|
|
</launch> |