Follow

Follow
0. Mobile Robot Project Log

0. Mobile Robot Project Log

Trinh Nguyen's photo
Trinh Nguyen
·Apr 16, 2023·

7 min read

Play this article

Table of contents

  • 16 April 2023 - Hardware Order
  • 18 April 2023 - Install ROS 2
  • 19 April 2023 - Test Lidar
  • 01 May 2023 - Test Pi and Motor
  • 14 May 2023 - Mobile Robot Prototype

As said in the previous post, I will not wait until the robot is complete and then make tutorials. This project log contains all the newest updates (ideas, changes, problems, etc.) that I encounter during this project from the start to the end. As always, I really appreciate any ideas or comments from you to improve the project, so don't hesitate to let me know.

16 April 2023 - Hardware Order

Today, I received all the main components that I ordered last week. Most of them are shown in the photo below. The most expensive one is the Raspberry Pi, then comes the Lidar and motors.

I bought them from different sites (Ebay, Amazon, etc.) and more details can be found in the table below (to be updated).

I already tried to use popular devices that hopefully, you can easily find and buy too. But for those of you who don't have a big budget, I will also leave my recommendation in the section where I test each of them. Can't wait to test them out!

18 April 2023 - Install ROS 2

I installed Ubuntu 22 and ROS 2 Humble on my laptop (and later on the Raspberry Pi too). This is the first time I use ROS 2 so it's a bit bewildering because there are many changes.

ROS 2 Documentation — ROS 2 Documentation: Humble documentation

For the differences between ROS 2 and ROS 1, you can easily ask Google or ChatGPT or here but some of my first impressions after going through some tutorials are:

  • ROS 2 uses a new build system called ament instead of catkin. ament provides a number of advantages over catkin, including better support for cross-compiling, more flexible package structures, and better support for non-C++ languages like Python, bla bla bla. The underlying building concept is still similar between the two. ROS 2 provides a build tool named colcon that can build packages of multiple build systems (python, cmake, ament_cmake, ament_python, catkin...). So now instead of doing catkin build, we need to use colcon build.

  • No roscore needed! One of the main changes in ROS 2 is the use of DDS (Data Distribution Service) as the default communication middleware. DDS provides a standard API for data communication, which allows nodes to communicate with each other directly, without the need for a central coordinator like roscore. In ROS 2, DDS is used for message passing, service invocation, and discovery of other nodes in the system.

19 April 2023 - Test Lidar

The next thing I tested is the lidar. The one I bought is a Slamtec RPLIDAR A1 which is a 2D rotating lidar. The wire connection is quite straightforward. I just followed the instruction. The only thing I don't like is that there is no Micro-USB cable delivered without which I cannot connect it to my laptop, and I find it stupid. Luckily, I have some of them. After connecting to the laptop, the lidar ran right away.

In order to view the result from the lidar, I found this repository on Github from RpLidar and cloned it to the ros workspace. However, the building ran into some error saying something like error: narrowing conversion of ‘rp::hal::Event::EVENT_TIMEOUT’ from ‘int’ to ‘long unsigned int’ [-Wnarrowing] and I don't know how to solve it.

Then I found out that I can simply run sudo apt install ros-humble-rplidar-ros to install this package for ROS2 Humble. But when I ran it, another error Error, cannot bind to the specified serial port '/dev/ttyUSB0'. I checked if the serial connection /dev/ttyUSB0 exist but it did not, so I guessed the problem may come from the cable. I tried all 3 USB cables that I have and one of them lit up the green LED from the lidar which gave me some hope, but no, the same error happened. I tried another package which was forked from the original repository above and modified for ROS Humble, but the same error. Hmm!?

The last thing I tried is to restart my laptop. And, it worked. Oh my... Now I can see the point cloud from the lidar in rviz. Yay!

01 May 2023 - Test Pi and Motor

Last week, I tried to set up the Raspberry Pi and check if it works fine. However, there was a problem that at first I thought was not a big deal but turns out it was. The board that I mistakenly ordered is a Compute Module 4 (not a Raspberry Pi 4 Model B), which has 8GB RAM and an SSD of 256 GB which are more than enough for this application. It also came with a very nice metal box. I started by flashing the Ubuntu 22 image file to the SSD to install it. However, when the Ubuntu installation window appeared, I could not use my mouse and keyboard. I googled the problem a lot and tried many suggestions like here or here but nothing works. I also tried to boot from an SD Card but wasted an hour (just trying different cards, restarting the board, etc.) just to find out that this Pi version does not accept SD Card since it comes with an SSD already. So in the end, I gave up and ordered a normal Raspberry Pi 4 Model B.

In the meantime, I tested the motor directly with my laptop. This is also one tip to someone who doesn't or cannot buy a Pi, you can simply use your laptop for all the tasks in this series. The Pi is just a more compact solution and it is indeed a computer.

For the motor, I follow this tutorial and it worked quite nicely. I used an Arduino Nano and an L298N motor driver (a 15V adapter, which is not in the image, is connected to the motor driver). The Arduino receives signals from my computer via the serial USB connection and controls the motor. It also reads the encoder values from the motor and sends them back to the laptop for close loop control for example. The code for the Arduino is from this repo and a demo with ROS can be found here. The theory about this step will be one big chapter later in this series so I will not go into detail here.

The wiring is shown below. Note that I just tested with one motor so far but for the second it should be similar. Next, I am trying to find a way to make the chassis (or the base) of the robot. Maybe I will simply start with a box or even a wooden plate. Let's see.

14 May 2023 - Mobile Robot Prototype

First of all, sorry for such a late update. There are so many things going on in my life right now (new baby is coming, new job, finding a new flat, etc.), so it is difficult to make progress.

Install Ubuntu on a Raspberry Pi

I bought a new Raspberry Pi board (Model 4B with 8GB RAM, 4GB verson should also work) and got no problem installing Ubuntu 22. First, I uploaded the installation file (as known as OS image) to an SD card (mine is a 64GB) using an application called Raspberry Pi Imager. You can use Imager on Windows, Linux or Mac OS. After installation, open Imager and plug in the SD card. Click Choose OS > Other general-purpose OS > Ubuntu > Ubuntu Desktop 22.04.2 LTS (64bit), then click Choose storage and select the SD card. Finally, click write to start the uploading. When done, remove the SD card and plug it into the Pi. Turn on the Pi by connecting the power cable and connect it to a monitor with an HDMI cable. Follow the instruction on the screen to install Ubuntu which is pretty straightforward.

Build the first prototype

I have built the first prototype of the robot using a plastic box with a size (Length x Width x Height) of 18x16x8 cm. I mounted the two wheels and a furniture swivel castor under the box like below.

mobile-robot-prototype-1

After that, I put the lidar and the Pi camera onto a wooden plate which is then mounted to the lid. All the other electronic parts are put inside the box. It looks a bit messy right now but I think it is fine for the first version.

Next, I will take a look into how to power the robot. Someone suggested using a LiPo battery or a power bank for the Pi plus a set of 8 AA batteries for the motor. I may try the latter first because I find it safer. The other thing I will do is to create a robot description (i.e. URDF) so that I can simulate it in ROS.

Did you find this article valuable?

Support Trinh Nguyen by becoming a sponsor. Any amount is appreciated!

See recent sponsors Learn more about Hashnode Sponsors
 
Share this