How to choose the right Arduino board?

Find out which of these development boards is best for your project.

May 9, 2023

by

Kacper Kaleta

Arduino boards

Arduino boards come in different shapes and sizes. Some are more powerful than others, some provide features that others don't.  There's no good or bad choice here and this makes it even harder to decide which board to use. Check here if you want to compare all the available Arduino boards. In this article, I will try to outline some characteristics of them to make it easier to choose the one that works for you.

GPIO

Make sure that the board you choose gives you the ability to connect all parts of your project. Every Arduino board comes with Digital and Analog input pins; but their number may vary depending on the board. The most common Arduino board – Arduino UNO – comes with 20 GPIO pins, 6 of which are analog input pins. There are some Arduino boards, e.g. Arduino Mega, with more than 50 GPIO pins.

Arduino boards GPIO

Size matters

The more features a board has to offer, the bigger it gets. If space is not an issue, with boards like Arduino Mega (102mm by 54mm) or Arduino Uno (69mm by 54mm) you have a lot of flexibility. Sometimes, space might be a larger constraint than the number of GPIO pins. If that’s the case, you’ll need to use boards with a lower footprint. The smallest Arduino programmable through USB is Arduino Nano that’s just 45 mm by 18 mm in size. If you want to go even smaller and aren’t afraid of external programs, Arduino Pro Mini (33 mm by 18 mm) might be the best choice for you.

Arduino boards size

Need for speed

When choosing a board, you may want to know how much processing power it has. Most of the Arduino boards have a 16MHz processing unit. This may not seem fast and, frankly, it isn’t. Microcontrollers just aren’t made to be data processing power plants. Though, 16 MHz is fast enough for most projects that you can see here. The complexity of some of these projects shows that, in reality, speed is not everything. If your project relies on fast reaction times or a lot of data acquisition, you may want to use faster boards like Arduino DUE that runs at 84 MHz (if you are looking for an even faster board, check out the Teensy boards made by Paul Stoffregen – I personally love them ;)).

Arduino boards CPU speed

Hardware Interfaces

Nearly every time you want to use an Arduino, it’s going to be connected to some kind of sensor or device. In order to make the connections easier, some boards come with built-in Peripheral Interfaces. Most smaller Arduino boards are equipped with 1x UART, 1x SPI and 1x I2C interface. Bigger boards might come with more of them or offer additional ones like CAN or Ethernet.

Arduino boards hardware interfaces

Memory

Flash

This is where your board hides the code you write: the bigger the memory, the more complex code you can write.

RAM

RAM is used to store and manipulate the variables created during normal operation. When you are declaring variables in the sketch, gathering data or outputting text to the LCD screen, SRAM is being used.

e.g. char message[] = “How do I choose the best Arduino board?”puts 40 bytes into SRAM – one for each character and additional ‘\0’ terminator sign at the end. When you are working with a board with 2048 B of RAM, this one sentence takes up nearly 2% (40/2048) of the available RAM space. As you can see, the RAM size can be quite restricting, but 2 kB is enough to be usable in many circumstances. When using an Arduino board to collect a large quantity of data or to output long strings of text, you may want to get a board with a larger RAM capacity.

EEPROM

EEPROM is a non-volatile memory, where you can store long term information. Being non-volatile means that a power shortage is not going to erase the stored data. EEPROM is stable enough for the data to be readable even after years without power.

Sadly, the disparity between the boards makes it hard to show the differences in memory size of the boards as a meaningful graph, that’s why I’ve put it into a table that's easier to read.

Arduino boards memory

Logic Voltage Level

Some boards can have input voltage as high as 12 V, but the usual logic voltage level is 5 V or 3.3 V. The logic voltage level of your board determines, including but not limited to, how easy it is going to be to combine it with peripheral devices. Trying to connect a 5V microcontroller to a 3.3V tolerant sensor, in some cases, might end up in rapid unplanned destruction of that sensor. All in all, combining boards with different logic levels can be problematic and might force you to use logic level shifters. If you know that your project will require components with one logic voltage level, it might be useful to choose a board that uses the same one.

Arduino boards logic voltage level

Power consumption

Microcontrollers are frequently used with battery power, which means that lower power consumption will allow the board to work longer without the need for recharging. Depending on the complexity of your project, the power consumed by a microcontroller might be insignificant. For smaller projects, however, the amount of power used by your microcontroller might be a deciding factor in the longevity of the battery power. If low power consumption is a must for your project, reducing the clock speed can lower it by 15-50% depending on the board used (some boards come with low power mode that can reduce the power consumption even lower).

Arduino boards power consumption

Keep in mind that there are dozens of development board manufacturers and hundreds of board designs which makes it almost impossible to compare all of them on a single page. Some offer features like RTC, Capacitive sense pins, SD card slots, WiFi/Bluetooth etc., which I haven’t even talked about.

Overall comparison

For your convenience, I've also put all the boards' parameters in one place (you're welcome):

Arduino boards comparison

Which board then?

In general, the best board to choose will be the one that provides you with all the features necessary for your projects. It might not be in the set of boards I’ve talked about, but it’s there somewhere. Just remember that sometimes it’s better to spend time working on your project than looking for the “perfect” board.

For the use with Leo Rovers, we’ve chosen the Arduino DUE board as space is not an issue and the board has good processing power and enough GPIO pins for our current and future projects.

See Arduino DUE integration with Leo Rover

Want to see more posts like that?

Subscribe to stay informed.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

See more blog posts:

<- get back to the Blog