KevsRobots Learning Platform
85% Percent Complete
By Kevin McAleer, 3 Minutes
RViz has 3 main panel by default, and you can add additonal panels to suit your needs (its very flexible).
In the screenshot above you can see the main areas of the screen:
RPLidar Laser scanner
The SlamTec RPLidar A1 is an affordable laser scanner, ideal for use with robotics, and costs less than £99. We will use this in our tutorial.
To view our LiDAR data in Rviz2 we need to do a couple of actions:
laser_scan
coordinates to the World
coordinatesrviz2
and add the laser_scan displaygit clone https://github.com/babakhani/rplidar_ros2
The
rplidar_ros2
folder needs to be inside the cubie-1 folder, so make sure this is in the correct place by draging this into the Cubie-1 folder
colcon build
source install/setup.bash
We can now start the Laser scanner node.
docker exec -it docker-full_ros2_1 bash
cd ros2/rplidar_ros2
source install/setup.bash
ros2 run rplidar_ros rplidar_composition
The RPLidar will momentarily stop and then restart, and you will see some output on the terminal showing that the LiDAR is now up and running
We can check that the /scan
topic exists by using the ros2 topic list
command. Lets open a new terminal and check we can see it.
docker exec -it docker-full_ros2_1 bash
ros2 topic list
There should be three topics listed:
/parameter_events
/rosout
/scan
If the /scan
topic is visible, this means the LiDAR is successfully sending data to the Ros topic named /scan
.
Lets start RViz2.
rviz2
We will configure RViz in the next section.
You can use the arrows ← →
on your keyboard to navigate between lessons.