mirror of
https://github.com/bjoernellens1/bot_mini_description.git
synced 2024-11-22 15:23:47 +00:00
24 lines
685 B
Plaintext
24 lines
685 B
Plaintext
|
<?xml version="1.0"?>
|
||
|
<robot xmlns:xacro="http://www.ros.org/wiki/xacro" name="2dof_robot">
|
||
|
|
||
|
<xacro:arg name="prefix" default="" />
|
||
|
|
||
|
<xacro:include filename="$(find rrbot_description)/urdf/rrbot_description.urdf.xacro" />
|
||
|
|
||
|
<xacro:include filename="$(find rrbot_description)/gazebo/rrbot.materials.xacro" />
|
||
|
|
||
|
<xacro:include filename="$(find odrive_demo_description)/urdf/odrive.ros2_control.xacro" />
|
||
|
|
||
|
<link name="world"/>
|
||
|
|
||
|
<xacro:rrbot parent="world" prefix="$(arg prefix)">
|
||
|
<origin xyz="0 0 0" rpy="0 0 0" />
|
||
|
</xacro:rrbot>
|
||
|
|
||
|
<xacro:odrive_ros2_control
|
||
|
name="ODriveRRBot"
|
||
|
joint0_name="$(arg prefix)joint1"
|
||
|
joint1_name="$(arg prefix)joint2" />
|
||
|
|
||
|
</robot>
|