IMU sensor (not in ROS)
Hi, I am using GAZEBO without ROS and I am trying to add an IMU sensor to myrobot. I have a file myrobot.urdf.xacro in which I have added an imulink and an imujoint. Then in my_robot.gazebo I have the following:
<gazebo reference="imu_link">
<sensor name="imu_sensor" type="imu">
<always_on>1</always_on>
<update_rate>1000</update_rate>
<visualize>true</visualize>
<topic>__default_topic__</topic>
<imu>
<noise>
<type>gaussian</type>
<rate>
<mean>0.0</mean>
<stddev>2e-4</stddev>
<bias_mean>0.0000075</bias_mean>
<bias_stddev>0.0000008</bias_stddev>
</rate>
<accel>
<mean>0.0</mean>
<stddev>1.7e-2</stddev>
<bias_mean>0.1</bias_mean>
<bias_stddev>0.001</bias_stddev>
</accel>
</noise>
</imu>
</sensor>
But when I run my simulation I don't see any IMU relative topic in the list of GAZEBO topics. Am I missing something? Thx!
PS: I am using Gazebo-2.0
Asked by Enrico Mingo on 2013-10-30 05:47:20 UTC
Answers
Solved, thx.
Asked by Enrico Mingo on 2013-10-30 11:44:36 UTC
Comments
Could you edit this answer and include what was the problem or how did you solve it? Thanks.
Asked by Jose Luis Rivero on 2013-10-30 12:26:45 UTC
Seconded - I have exactly the same problem!
Asked by hangdog on 2014-01-03 14:10:58 UTC
Comments