ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Problem with amcl - need some help!

asked 2014-02-22 22:14:30 -0500

seredin gravatar image

updated 2014-02-22 22:15:57 -0500

Hello all!

I have a problem with amcl. My URDF model has a joints. When I launch amcl, it don't work. My robot can't find location himself, it start random driving and can't see obstacles. At that moment i don't have error message. This is my main launch file:

<launch>

    <param name="robot_description" command="$(find xacro)/xacro.py '$(find tod_description)/urdf/bot_arm.urdf.xacro'" />


   <node name="arduino" pkg="ros_arduino_python" type="arduino_node.py" output="screen">
      <rosparam file="$(find ros_arduino_python)/config/my_arduino_params.yaml" command="load" />
     <!-- <param name="arduino/odom_angular_scale_correction" value="1.25"/> -->
   </node>


  <node name="arbotix" pkg="arbotix_python" type="arbotix_driver" output="screen">
      <rosparam file="$(find bot_bringup)/config/bot_arbotix.yaml" command="load" />
      <param name="sim" value="false"/>
  </node>  

  <node name="robot_state_publisher" pkg="robot_state_publisher" type="state_publisher">
      <param name="publish_frequency" type="double" value="20.0" />
  </node> 

</launch>

When launch amcl and my urdf model don't have joints, all it work perfect.

What is wrong? How i can fix it?

edit retag flag offensive close merge delete

Comments

where do you start amcl, and is your laser scanner working correct ?

pkohout gravatar image pkohout  ( 2014-02-25 21:23:38 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2014-03-13 08:06:28 -0500

Ken_in_JAPAN gravatar image

I don't know if my answer matches your question. When I launched amcl with turtlebot2 model, I remembered that I had similar problem. I mean that URDF model is complete, but amcl can't parse URDF model. So, I described the following to solve my problem.

  • arg name="urdf_file" default="$(find turtlebot_description)/robots/$(arg base)_$(arg stacks)_$(arg 3d_sensor).urdf.xacro"/
  • param name="robot_description" command="$(find xacro)/xacro.py '$(arg urdf_file)' use_full_gazebo_model:=$(arg use_full_gazebo_model)" /

As you know, arg and param needs blacket <>. I'm not familiar with how to write on web site.

I hope you can solve the problem.

edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2014-02-22 22:14:30 -0500

Seen: 369 times

Last updated: Mar 13 '14