How to integrate transmission into RobotHW
We have migrated our robot base driver to use ros_control.
That works well, execpt for the transmissions. There are transmissions in the URDF Model:
<transmission name="wheel_left_trans">
<type>transmission_interface/SimpleTransmission</type>
<joint name="wheel_left_joint">
<hardwareInterface>VelocityJointInterface</hardwareInterface>
</joint>
<actuator name="left_motor">
<mechanicalReduction>12</mechanicalReduction>
</actuator>
</transmission>
Is there a common practice on how to use this in the RobotHW?
The only example I know of is this tutorial. But there the transmission is not read from the URDF model.