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

problems running nav2d tutorials - ROS Hydro

asked 2015-01-26 03:58:29 -0500

AlexR gravatar image

updated 2015-01-29 07:47:06 -0500

Hi,

I have recently installed the nav2d package for ROS - Hydro on ubuntu 12.04 64 bit.

I installed the packages using the sudo apt-get install ros-hydro-nav2d.

when running the launch file :

$ roslaunch nav2d_tutorial tutorial1.launch

I am getting the following errors:

core service [/rosout] found
process[Stage-1]: started with pid [15084]
ERROR: cannot launch node of type [nav2d_operator/operator]: can't locate node [operator] in package [nav2d_operator]
process[Joystick-3]: started with pid [15108]
ERROR: cannot launch node of type [nav2d_remote/remote_joy]: can't locate node [remote_joy] in package [nav2d_remote]

The stage simulator comes up nicely but on the rviz I can only see the robot and laser scans and no cost maps. When using joystick the robot does not move. Can someone help me with this issue?

Thanks a lot.

Alex

Edit 2:

From @sebastian's suggestion, I checked the rqt_graph and rosnode info, it seems that my hokuyo was giving scan topic while the topic needed in base_scan. So I removed the lines <remap from="scan" to="base_scan"/> from the launch file. But no success. check the screenshot But when i change the topic of map from map to costmap topic I was able to get the costmapScreenshot. I checked my tf frames. And the laser is connected to the base_laser link so I made few changes to the ros.yaml file.

   ###########################################################
# Defines topics services and frames for all modules

### TF frames #############################################
laser_frame: base_laser
robot_frame: base_link
odometry_frame: odom
offset_frame: offset
map_frame: map

### ROS topics ############################################
map_topic: map
laser_topic: scan

### ROS services ##########################################
map_service: static_map

updated rqt graph I changed the laser_frame to base_laser from base_laser_link and for the time things worked. I was able to see the map. But could not control the robot using my usb joystick. I used the normal joytick. launch to move the robot and the map gets updated for few seconds and the robot does not move. Little_success.

So things seem to get working but I am doing something wrong with the joy node or with the tf frame. Since my cmd_vel topic is mapped to /RosAria/cmd_vel. Should I be changing that and where exactly.

Can you please check the tf frames and the rqt graphs I attached and find the problem.

edit retag flag offensive close merge delete

Comments

Does roscd nav2d_operator work?

BennyRe gravatar image BennyRe  ( 2015-01-26 04:28:34 -0500 )edit

And if it works, where does it point to?

Sebastian Kasperski gravatar image Sebastian Kasperski  ( 2015-01-26 08:05:22 -0500 )edit

ok, I solved the problem.. Some dependencies were not installed by apt-get install, don't know why but I sourced the package into the catkin folder and everything works fine now. One question @sebastian, how do i take control of the robot's motion by joystick and not let it explore autonomously?

AlexR gravatar image AlexR  ( 2015-01-27 00:45:57 -0500 )edit

The robot seems to not explore narrow doors and I want to first move the robot using joystick teleop and then use the built map to explore using amcl. Can you tell me how to do that ?

Thanks

AlexR gravatar image AlexR  ( 2015-01-27 00:47:17 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
1

answered 2015-01-27 02:57:42 -0500

Sebastian Kasperski gravatar image

updated 2015-01-27 03:03:17 -0500

If you run tutorial1, you should already be able to control your robot via joystick. You can always have autonomous navigation and joystick control running in parallel. Just make sure you stop any navigation action (MoveTo, Explore), before you try to send commands with the joystick. If you don't, the autonomous commands and joystick commands will interfere with each other.

If you want to build a map, you have to add a mapper to your setup. You can then load the map with the map_server module and use amcl for localization.

edit flag offensive delete link more

Comments

Hi thanks for your answer. When I do try to control the robot using joystick the exploration would overtake the control. What if I remove the joy_node and make another node using the keyboard teleop. Will it affect the working.

AlexR gravatar image AlexR  ( 2015-01-27 04:55:55 -0500 )edit

Yes, that is why you have to stop exploration before you can control the robot. (Button 2 on the joystick will stop all actions) Currently there is no working keyboard control for the nav2d-nodes.

Sebastian Kasperski gravatar image Sebastian Kasperski  ( 2015-01-27 05:10:06 -0500 )edit

ok great! will this stack work on a p3dx. It would be great if I can run the graph slam on the p3dx using a horizontal hokuyo attached to it. What changes do I need to make to run on p3dx. Presently, we use the RosAria package to control the p3dx with hector_slam and gmapping using hokuyo laser.

AlexR gravatar image AlexR  ( 2015-01-27 05:40:45 -0500 )edit

We used it on a P3AT, but it should definitely work with a P3DX the same way. If you follow tutoral3, you should have everything you need for mapping and navigation running on your robot. (Of course replace Stage-Simulator with your RosAria and Hokuyo node)

Sebastian Kasperski gravatar image Sebastian Kasperski  ( 2015-01-27 06:32:16 -0500 )edit

Thanks for your reply. I tried to setup the p3dx, but the map is not being generated. I can see the laser scans. Also, the joy_node is not responding to joystick buttons. I have uploaded the my launch file and rviz screenshot for some hint. Can you please check and suggest me what I am doing wrong.

AlexR gravatar image AlexR  ( 2015-01-28 04:03:44 -0500 )edit
AlexR gravatar image AlexR  ( 2015-01-28 04:03:57 -0500 )edit

Please check if your laser-scanner is connected to the Operator and the Mapper. If yes, check the height of the scanner above ground. You may have to adapt the last line in costmap.yaml.

Sebastian Kasperski gravatar image Sebastian Kasperski  ( 2015-01-28 06:53:35 -0500 )edit

Can you explain how to check connection for sensor to Operator and Mapper. The laser is mounted 40 cm above the ground. Is the max_obstacle_height = 0.4 correspond to the laser height?

AlexR gravatar image AlexR  ( 2015-01-28 13:53:34 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2015-01-26 03:58:29 -0500

Seen: 743 times

Last updated: Jan 29 '15