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

Autonomous Navigation of a Known Map with TurtleBot Problem

asked 2013-06-20 08:16:00 -0500

Nic gravatar image

updated 2013-06-20 08:49:51 -0500

dornhege gravatar image

Hi, I'm totally new in ROS-Groovy and turtlebot 2(Kobuki) on Ubuntu 12.04(64bit). I followed TurtleBot tutorials, section 1 to 3 were OK. But I met some difficulties with basic tutorial about "Autonomous Navigation of a Known Map with TurtleBot".

I generated a my_map following the previous tutorial, "SLAM Map Building with TurtleBot". After that, I loaded my_map and "roslaunch turtlebot_rviz_launchers view_navigation.launch". I could Localize the TurtleBot using "2D Pose Estimate" and Teleoperation. But when I Clicked the "2D Nav Goal" button and set a Goal, my turtlebot didn't move anywhere. Can anyone help me?

I found some warnings when I ran "roslaunch turtlebot_navigation amcl_demo.launch map_file:=/tmp/my_map.yaml". The warnings are,

: You have set map parameters, but also requested to use the static map. Your parameters will be overwritten by those given by the map server

: Trajectory Rollout planner initialized with param meter_scoring not set. Set it to true to make your settins robust against changes of costmap resolution.

And I also checked the status by "rqt -s kobuki_dashboard", after set a Goal, I found a warning that "Using odometry instead of last command" every frame.

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
0

answered 2013-06-30 07:09:08 -0500

Nic gravatar image

Hi, I solved it by myself.

The reason why I could not use the autonomously plan is that I did not stop the teleoperation when I use the "2D Nav Goal" command, roslaunch turtlebot_teleop keyboard_teleop.launch

Then, after "2D Pose Estimate" and localization by teleoperation, I should stop the teleoperation command.

After stopping teleoperation, "2D Nav Goal" command works well!

edit flag offensive delete link more

Comments

I just encountered the same problem and I just started teleop, because it was mentioned, that one should do that. [1] Maybe it should be mentioned on the wiki page, that one has to use roslaunch kobuki_keyop keyop.launch as teleoperation. [1]: http://wiki.ros.org/turtlebot_navigation/Tutorials/Autonomously%20navigate%20in%20a%20known%20map

MatthiasMayr gravatar image MatthiasMayr  ( 2013-10-23 01:53:48 -0500 )edit

I filled an issue on GitHub: https://github.com/turtlebot/turtlebot/issues/105 Please feel free to report future software problems there.

bit-pirate gravatar image bit-pirate  ( 2013-10-23 13:50:40 -0500 )edit
2

answered 2013-07-01 03:05:24 -0500

dornhege gravatar image

Given your answer: There is a better solution to your problem.

If you use the standard turtlebot launch files, there should be a cmd_vel_mux set up for you. Check out the topics under /cmd_vel_mux/input/...

If you send teleop, autonomy (navi) and others that you might configure to those topics, the cmd_vel_mux should automatically switch on and off the respective topics.

edit flag offensive delete link more

Comments

Thanks. I check it using "rqt_graph". But when I run the terelp, I found only /turtlebot_tereop_keyboard node communicated to /mobile_base_nodelet_manager node on /cmd_vel_mux/input/tereop topic. /map_server node, /move_base node and /mobile_base_nodelet_manager still communicate. Why don't work?

Nic gravatar image Nic  ( 2013-07-01 14:21:15 -0500 )edit
1

What's terelp? Note that cmd_vel_mux selects the passing through velocity messages based on the priority assigned on param/mux.yaml, so if terelp keeps publishing zero velocity the robot will not respond to navigation goals, who has less priority. What's published on /mobile_base/commands/velocity?

jorge gravatar image jorge  ( 2013-07-01 22:13:15 -0500 )edit

I'm sorry, there are some typo. terelp means teleop, and tereop means teleop.

Nic gravatar image Nic  ( 2013-07-02 04:41:34 -0500 )edit

Thanks for your help. I found that after I launched "turtlebot_teleop", six zero parameters(linear and angular xyz) are published on topic "/mobile_base/commands/velocity" when I did not input any command. And in param/mux.yaml, the "Teleoperation" priority is 7.

Nic gravatar image Nic  ( 2013-07-02 04:49:02 -0500 )edit

I could not find the priority of "2D Nav Goal" on Rviz. But I found that when I run "rosnode info /mobile_base_nodelet_manager ", then "/cmd_vel_mux/input/navi_raw" follows "topic: /cmd_vel_mux/input/teleop". on Connections. Does the writing order mean the priority?

Nic gravatar image Nic  ( 2013-07-02 05:04:58 -0500 )edit
1

Nop, is the value of the priority parameter on turtlebot_bringup/param/mux.yaml file. Navigation has 5. cmd_vel_mux needs that all inputs behave politely to work, no spaming with zero-velocity messages when inactive.

jorge gravatar image jorge  ( 2013-07-02 14:06:59 -0500 )edit
1

We should modify turtlebot_teleop to fit this requirement. You can alternatively use kobuki_keyop, that I find more convenient and behaves properly: roslaunch kobuki_keyop keyop.launch

jorge gravatar image jorge  ( 2013-07-02 14:08:20 -0500 )edit

Thanks, Jorge. I found the priority parameter 5 on turtlebot_bringup/param/mux.yaml, and the priority parameter 7 on kobuki_keyop/param/keyop_mux.yaml. Then if I use kobuki_keyop, the navigation works.

Nic gravatar image Nic  ( 2013-07-03 04:10:54 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2013-06-20 08:16:00 -0500

Seen: 1,890 times

Last updated: Jul 01 '13