forked from xtdrone/XTDrone
57 lines
2.1 KiB
XML
Executable File
57 lines
2.1 KiB
XML
Executable File
<?xml version="1.0"?>
|
|
<robot xmlns:xacro="http://ros.org/wiki/xacro">
|
|
|
|
|
|
<xacro:macro name="le_arm_transmission" params="prefix">
|
|
|
|
<transmission name="${prefix}shoulder_pan_trans">
|
|
<type>transmission_interface/SimpleTransmission</type>
|
|
<joint name="${prefix}shoulder_pan_joint">
|
|
<hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
|
|
</joint>
|
|
<actuator name="${prefix}shoulder_pan_motor">
|
|
<mechanicalReduction>1</mechanicalReduction>
|
|
<hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
|
|
</actuator>
|
|
</transmission>
|
|
|
|
<transmission name="${prefix}shoulder_lift_trans">
|
|
<type>transmission_interface/SimpleTransmission</type>
|
|
<joint name="${prefix}shoulder_lift_joint">
|
|
<hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
|
|
</joint>
|
|
<actuator name="${prefix}shoulder_lift_motor">
|
|
<mechanicalReduction>1</mechanicalReduction>
|
|
<hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
|
|
</actuator>
|
|
</transmission>
|
|
|
|
|
|
<transmission name="${prefix}elbow_trans">
|
|
<type>transmission_interface/SimpleTransmission</type>
|
|
<joint name="${prefix}elbow_joint">
|
|
<hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
|
|
</joint>
|
|
<actuator name="${prefix}elbow_motor">
|
|
<mechanicalReduction>1</mechanicalReduction>
|
|
<hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
|
|
</actuator>
|
|
</transmission>
|
|
|
|
<transmission name="${prefix}wrist_1_trans">
|
|
<type>transmission_interface/SimpleTransmission</type>
|
|
<joint name="${prefix}wrist_1_joint">
|
|
<hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
|
|
</joint>
|
|
<actuator name="${prefix}wrist_1_motor">
|
|
<mechanicalReduction>1</mechanicalReduction>
|
|
<hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
|
|
</actuator>
|
|
</transmission>
|
|
|
|
|
|
</xacro:macro>
|
|
|
|
|
|
</robot>
|