As mentioned in Part 1, you shouldn’t have problem in completing your robot if you get a “ready-to-use” robot or the building kit because most of the time you will be provided with a complete building guide when you purchase the robot. So please check carefully before you buy, if the building manual is not provided, don’t buy that kit!
In this post, we will be focusing on option C – Building robot from scratch.
Usually, there are 6 major components in a mobile robot that we are going to explore deeper one by one.
The controller served as the main processing unit for your robot. Depends on the complexity of your robot, you need to decide a suitable controller for it. For beginners to start learning to build a robot, I would recommend Arduino because it is low cost, easy to learn and you can easily find thousands of tutorial or guides from the internet teaching how to use it to build a robot. Of course, you are free to use other controllers such as micro:bit, Raspberry Pi, BeagleBoard and etc.
The Actuator (The DC Motor)This is one of the most frequently asked question – What DC motor should I use?
To answer this question, you need to be able to provide these 2 parameters:
1. The Torque
*mass of your robot in Kg (include the load that you want it to carry), radius of the wheel you use on your motors in meter (m)
2. The RPM
*Distance and radius in meter (m) and time in second (s).
Now you have got 2 important specs to choose your DC Motor.
Note: If you want to learn more about how to choose a DC motor, you shouldn’t miss this post.
Once you have selected the suitable DC motor, you need to learn how to select a right H-bridge motor driver to drive your DC motor properly.
H-Bridge DC Motor DriverYou may be asking, why do we need an H-bridge motor driver? Why can’t we connect the motor directly to our controller?
This is because most of the microcontroller output only give very small current (in milliampere) but a DC motor required big current to work. The bigger motor you are using, the bigger the current it consumes.
The H-bridge motor drivers usually are designed based on 3 parameters- the maximum current output, the supported motor voltage, and the supported control signal.
The Maximum Current OutputCurrent is measured in ampere (usually mentioned in Amp or A). We need to ensure the motor driver is able to cope with the current needed by the motor. If we refer to a motor’s datasheet, you will find 3 type of current specification- no load current, rated current and the stall current. We can ignore the no load current. Rated current means the current drawn by the motor in the normal operation while the stall current is the maximum current the motor would draw when the motor is stalled.
What is motor stall? Motor stalling means the motor has more load on it than it is designed for and it can no longer supply enough torque to keep it spinning A.K.A. overloaded. This happens when the motor is stuck at a dead end or it is pushing with another heavy object (e.g. an opponent robot). At this point, the motor will stop spinning but the current will continue to increase. It will last for a few seconds before the motor or the motor driver die. So, we need to prevent our motors from stalling for too long.
Check out this video to learn how to measure a motor’s stall current.
Does that mean we need to ensure the peak current of the H-bridge motor driver is more than the stall current of the motor? Not really! Because you are not going to stall your motor most of the time! In normal operation, your motor is running at the rated current. Hence, checking on the motor driver’s continuous current is more rational.
In short, if you are building a sumo or combat robot where motors will stall during pushing with opponent robots, then you need to ensure,
Motor Driver’s Peak Current > Motor’s Stall Current
Otherwise, just take care of the motor driver’s continuous current will do.
Motor Driver’s Continuous Current > Motor’s Rated Current
The Supported Motor VoltageThe common DC motors are running at 6V, 12V and 24V. You just need to ensure that the motor driver you selected supports the voltage required by your motor.
The Supported Control SignalThere are several common control signals that majority of the controllers are using- PWM, serial, CAN or I2C. You need to ensure that the motor driver you choose support the type of control signal you required. If you are a beginner and do not sure what to choose, just stick to PWM signal. This is the most common way to control a motor driver and all controllers should support this signal.
The SensorIf you are building an autonomous robot, you probably need at least one sensor (or combination of a few sensors) to navigate the robot. I only brief some of the commonly used sensors in this post. You can explore more on the internet.
Line SensorLine following is the most common and useful lesson to learn in a mobile robot. Usually, we will use IR sensors to detect the white lines and make the robot to follow the lines.
You need at least 2 pairs of IR sensor to do this job. However, I would recommend using 3 pairs of IR sensor for smoother navigation. You can either get the single IR module x 3 or get the line sensor array which is much easier to calibrate and reliable.
Note: I will write another post to explain this topic in more detail in the future.
Ultrasonic SensorFor obstacle avoidance, the most cost-effective option is to get the popular HC-SR04 ultrasonic Alternatively, you also get use the IR sensors to detect object or obstacle.
Rotary EncoderThe rotary encoder is typically mounted together with the wheel or the motor to measure the absolute distance transpassed by the robot. The reason to use rotary encoder is that in a certain condition, there is no white line or objects for the robot to follow.
Other SensorsThere are variety of sensor that you can explore. LiDAR, compass, IMU, camera vision and a lot more depending on what you want to achieve. If you are a beginner, always start with line following and obstacle avoidance using the line sensor and the ultrasonic sensor.
The BatteryI would recommend using rechargeable batteries for your robot to save your money and our lovely planet in the long run because the motors usually consume a lot of power. There are 3 common rechargeable batteries used in the mobile robot- Lead Acid, Li-Po and Li-Ion.
Please ensure you are getting the right battery charger to recharge these batteries. Improper charging may cause fire.
The ChassisDepends on the robot’s task, you can design your own robot chassis and print it with a 3D printer or build it using the extruded aluminum profile.
Alternatively, you can get the standard robot chassis kit available in the market.
ConclusionThis post intended to provide the beginners the basic guides on what are the options we have and how to select the right parts to build your first robot. I will continue to share know-how in mobile robot in different applications. Feel free to leave your comment to share with me the problem you faced in building a mobile robot.
Comments
Please log in or sign up to comment.