turtlebot_with_head.xacro 771 B

123456789101112131415161718192021222324
  1. <?xml version="1.0"?>
  2. <robot name="turtlebot_head_arm" xmlns:xacro="http://ros.org/wiki/xacro">
  3. <!-- Included URDF Files -->
  4. <xacro:include filename="$(find rbx1_description)/urdf/turtlebot.xacro" />
  5. <xacro:include filename="$(find rbx1_description)/urdf/head.xacro" />
  6. <xacro:include filename="$(find rbx1_description)/urdf/arm.xacro" />
  7. <!-- Load the main TurtleBot body -->
  8. <turtlebot />
  9. <!-- Attach the head -->
  10. <turtlebot_head parent="plate_3_link" color="white">
  11. <origin xyz="-0.09 0 0.075"/>
  12. </turtlebot_head>
  13. <!-- Attach the arm -->
  14. <!--
  15. <turtlebot_arm parent="plate_3_link" color="white" gripper_color="green">
  16. <origin xyz="0.12 0 0.0508" rpy="0 0 0" />
  17. </turtlebot_arm>
  18. -->
  19. </robot>