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

urg_node vs hokuyo_node

asked 2014-10-02 02:58:20 -0500

kost9 gravatar image

updated 2014-10-02 03:00:03 -0500

I am new to ROS and what I want to do is create maps for my robot with hokuyo lidar range sensors. I installed urg_node and hokuyo_node on my precise Hydro distribution of ROS.

I dont understand what the difference between these 2 nodes is and which one should I use. Is it true that urg_node is simply a new version of hokuyo_node and I shouldn't have installed hokuyo_node?

Also, some of the tutorials that explain how to use hokuyos only use hokuyo_node, so I'm a bit lost. My hokuyo device keeps being assigned a device name /ttyACM1 instead of /ttyACM0 which is why urg_node no longer works and I can't get laser data in rviz.

Can anyone please HELP!!??

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
4

answered 2014-10-02 08:47:34 -0500

paulbovbel gravatar image

If your device works with hokuyo_node, you can certainly keep using it. urg_node provides support for newer devices.

You can setup ubuntu to assign device names consistently using udev rules. This and this section shows an example rule for each node.

Create a root file as the root user, such as sudo nano /etc/udev/rules.d/50-hokuo.rules (the number doesn't matter), and paste in one of the rules above. The rule will call a getID executable installed by the node into your ros installation, which pulls the serial number from the device, and then that is used for naming.

Once you've put the rule into the right place, unplug your device, call sudo udevadm control --reload-rules; sudo service udev restart;, and then plug your device back in. Now if you ls -l | grep hokuyo you should see the device name with the serial number appended.

edit flag offensive delete link more

Comments

Thank you for the answer, paulbovbel !

kost9 gravatar image kost9  ( 2014-10-02 22:46:49 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2014-10-02 02:58:20 -0500

Seen: 2,447 times

Last updated: Oct 02 '14