Imu Integration with Mobile Robot
Hi. I am working on a mobile robot. I want to use xsense imu.
I can get the imu/data. When i turn the imu, i can see it turns in RVİZ. However my robot (base_link) doesn't move-turn.
Example In youtube Leo Rover account. If the imu turn , leo robot will turn in rviz.
https://www.youtube.com/watch?v=hZZzM...
My Robot
There should be something missing. But where it is?
xsense_topic topic publish base_link--->imu_link tf
my urdf file publish with robot state publish (map-odom-base-footprint-base_link-imu) map-odom-foot_print-base_link are published by static transform ( static transform publisher)
base_link-other components was published by robot state publisher
this is my urdf file related imu
<link name="imu_link">
<visual>
<origin rpy="0 0 1.57079632679" xyz="0.0121 0 0.0016"/>
<geometry>
<mesh filename="package://optim/meshes/mti_1.STL" scale="0.001 0.001 0.001"/>
</geometry>
<material name="xsens_orange">
<color rgba="0.92 0.45 0.02 1.0"/>
</material>
</visual>
</link>
<joint
name="imu_link"
type="fixed">
<origin
xyz="0.0 0 0.278189004081027"
rpy="0 0 0" />
<parent
link="base_link" />
<child
link="imu_link" />
<axis
xyz="0 0 0" />
</joint>
</robot>