MagniNavLine - Is code available?

Hello, Good afternoon!

I saw on the facebook page that you were testing a navigation version with a line follower, do you have the code available for this version?

The link of the video that i see is this:

https://drive.google.com/file/d/1EVdWoPBG-f8YLvVlt8sWUf5fzFCdv2dl/view?fbclid=IwAR0eZM8Oo3_lUS5twWp7gYA3f2XBnSjdjVsRbRSyjEBt3cmO4Cod2ekkUJw

Thanks,
Lucas Albini

Once you have a full navigation stack all running then I think you are asking about a script I wrote so I’ll point you to that. The script issues positions to our ‘move_basic’ code which must be running.

So this code will do NOTHING without a mapped area. In the case of this video it was using our ceiling fiducials but this would also work for a nav stack running with a robot that runs Lidar for room navigation.

Anyway, here is pointer to the location where you will find move_patterns.py

The script must be supplied the waypoint list. So for your initial look at this always start this script (once full nav stack and move_basic are all up) like this:

python move_patterns.py -w line

Mark

As a followup to this thread it may be of interest to Magni users to see what it takes to get a full navigation stack all running using a Lidar that you would attach to the Magni.

Now posted to our github is another demo which if you end up having an RP Lidar unit and feel like trying it with the Magni to get your feet wet in basic ROS navigation example this is a good start.

This assumes a Magni that you put your RPLidar on top of as described in the README.

If interested: https://github.com/UbiquityRobotics/demos/tree/master/magni_lidar

The hope is that more is added such as I’m thinking of trying the script I have just mentioned in prior post which should run on this demo once you get to a fully mapped areas and are doing the nav only part of the demo.

@mjstn2011, this is looking good,

so on top of your instructions, I will need to git clone https://github.com/UbiquityRobotics/demos/tree/master/magni_lidar to catkin_ws/src directory as well right?

and also will that mean both the magni_lidar and rplidar_ros will reside in the catkin_ws/src directory?

Please see the readme, there are some other things. This demo is specifically setup for the RPLidar at this time. The readme explains what you will need if you use this demo with the lidar. The demo is not for a point cloud camera, it is very specifically for the very popular RPLidar which is called a ‘scan’ or 2D nav lidar approach for this demo.

@mjstn2011, yes I have the Slamtec RPLidar A1 as well which I want to test as well,

Yes I have read the readme and that’s why I was asking the question above,

it mentions this set up which I have done

and I got the VM ready as the slave and Magni robot as the master , then the readme goes on to making the map , by launching ( roslaunch magni_lidar magni_lidar_mapmaker.launch),

and my question is do I need to git clone (demos/magni_lidar at master · UbiquityRobotics/demos · GitHub) magni_lidar to the catkin_ws/src directory as well? to run the magni_lidar_mapmaker.launch? or is this already in the current image , so I can just launch it ? (I tried and it saids launch file not found)

thanks

Oh I see, sorry , I was not following your thoughts well enough.

As with all repositories and code in them we basically clone the repository to ~/catkin_ws/src.

Now in the case of catkin_ws/src/demos what you need to do since it exists already is:
cd ~/catkin_ws/src/demos
git pull
cd ~/catkin_ws
catkin_make

And do the other steps for other things that are discussed.
Because this is totally brand new and only put up there couple days back, no it is not on any pre-existing image. This magni_lidar package is totally new and never existed before.

Thanks,
mark

@mjstn2011, yea ok, that’s what I’m after, now I’m clear on that part thanks,

and another step to clarify once more as well, is that does the RPlidar driver repository ( https://github.com/sharp-rmf/rplidar_ros) resides in the ~/catkin_ws/src path and not inside …/demos right? (you did mention all repositories above, so I want to make sure that you were referring to the RPlidar repository. )

thanks

Yes, the normal two ways to get ROS code are a clone into catkin_ws/src or the apt install sort of things. Thus you can notice I said cd ~/catkin_ws/src and then the the actual command that explains it all but I am ok with explaining it here as well. Suggest you may be interested in reading some more about use of git clone which places the repository right where you happen to be at the time, in this case catkin_ws/src. The apt install commands put things in folders that are appropriate for the ROS release you are using and those are most always for ROS kinetic under /opt/ros/kinetic but they can be a few layers deep in folders below that point.