What version of ROS should I use for Neato XV-11 software?
Hello all, I'm new to ROS. I bought a Neato XV-11 laser scanner from Ebay and I hope to make a self-driving toy car using this sensor and others. Looking at the tab names of the following page it seems to suggest the Neato XV-11 driver/software works with ROS Hydro and Indigo: http://wiki.ros.org/xv_11_laser_driver
However these two versions require older versions of Ubuntu. I want to install the latest ROS (Kinetic) which says it works with the latest Ubuntu (16.04): http://wiki.ros.org/ROS/Installation
Will that work for the Neato XV-11 software?
Asked by detmi31 on 2016-08-28 20:44:51 UTC
Comments
Most likely yes, but you'd have to build the
xv_11_laser_driver
package from source (as I'm guessing it won't be available viaapt-get install
on 16.04)Asked by spmaniato on 2016-08-29 00:24:39 UTC
Thank you. How do I build a package from source? I havent used Linux/Ubuntu much. Something like this? http://packaging.ubuntu.com/html/packaging-new-software.html
Asked by detmi31 on 2016-08-29 18:24:04 UTC
No. Just clone the GitHub repository (https://github.com/rohbotics/xv_11_laser_driver) into a catkin workspace and build it with
catkin_make
. See the ROS tutorials if you haven't used that command before.Asked by spmaniato on 2016-08-30 00:17:20 UTC