HOW TO CHOOSE RIGHT ARDUINO BOARD FOR YOUR PROJECT.


uno-vs-mega-vs-micro This is my first post for those who are building their Arduino project but have no idea about which Arduino board to choose. We will guide you about which board will fits in your project perfectly.

But first what is Arduino?
Arduino is a microcontroller development board used for making computers (or I should say micro-computers) that can interact with the environment, sense various data from the environment with the use of sensors and control devices like lights, motors, etc accordingly. It is an open source platform based on microcontrollers. The term Open Source indicates that all the resources for the board including the design files, CAD files etc are free and open to all. This means anyone can modify it according to their need. Arduino was designed to provide an inexpensive and easy way for students and professionals to create microcontroller computers that can interact with the physical environment. Arduino has gone viral among makers and enthusiasts with its simple design. It has two segments; a hardware part which includes the Arduino board and the software part which includes the Arduino IDE. The IDE is a simple and easy to learn software for writing Arduino programs. The simplicity and easiness of Arduino have made it so popular that almost all maker events have at least one project based on it.
What to do with this Arduino board?
Well, Its only limited by your imagination! Arduino can do a lot of things. This is a programmable device so you can find unlimited possibilities to make things happening. Using Arduino you can make robots, electronics gadgets (your own computer, mobile etc.), automatic machines (like drilling machines, CNC machines, garage door openings). You can make fun toys for children to space research applications like weather forecasting device.
How do you select the right board for your needs?
arduino table




































As Arduino is an open source platform anyone can make Arduino compatible boards. Many such boards are available in the market like the FreeDuino and NetDuino. One way to differentiate between original boards and the compatible models is to look for the trade name on the board. The name Arduino is trademarked and reserved for boards made from the original patent company in Italy. All compatible Arduino boards use a different but look alike trade name like Freeduino, Netduino, etc. If you want a cheaper alternative of the Arduino, you can always buy the clone boards. The best way to get cheap Arduino boards is to buy them online from sites like ebay, amazon, Sparkfun, etc. They are also available in your city's local electronics stores, so give them a call and confirm the same before going over. Along with the Arduino Uno, which is the best starter to the Arduino world, there are also other versions that can be found on the market. Since specifications vary, you should choose the board for your Arduino projects wisely. The different boards and their specifications are given in the table below. To bring your Arduino projects to life or to step into the world of Arduino, it is better to get started with the most commonly used versions such as the Arduino Uno, Arduino Mega or the Arduino Mini, as these have greater support available online than others. Comparing the basic three: ARDUINO_UNO_A06 Arduino Uno: If you are a beginner trying to get into the world of Arduino, the best option for you would be the Arduino Uno R3 which costs around Rs.1500. Or you can also buy clone boards like Freeduino which you could get starting from Rs.500. Arduino has 14 Digital pins and 6 Analog pins. So you have a total of 20 GPIO pins (General Purpose Input Output pins), which is good enough for much of the beginner and intermediate level projects. It also has a pair of Rx and Tx pins to connect Serial Communication Devices. Apart from that, a separate pair of Rx and Tx pins can be defined by including the header file SoftwareSerial. The Arduino Uno R3 comes in two models; the normal version and the SMD version. In the SMD version you have the Atmega328 controller IC as an SMD chip soldered into the board, whereas in the normal version the IC is held on, the Arduino by an IC Holder. The better option for beginners would be the Normal version. Even if you fry your controller IC accidently while working on your project, you may restore normal working by just replacing the IC. If you have an SMD Arduino, then you may end up replacing the Arduino board if you get the IC fried up. arduino-nano-1 Arduino Mini: If you are looking to get a cheaper intro into the field, or if you need your product in a smaller size, then you may go for the Arduino mini. It has all the functionalities of the Arduino Uno in a smaller size and is cheaper than the UNO. The mini has a length of about 3cm and is hence suitable for compact projects like small robots. But in the mini version, you still have the problem of the controller IC being surface mounted on the board. ARDUINO_MEGA_A01 Arduino Mega: If your Arduino project has a lot of wires running all around, which requires more than 20 pins, you can opt for an Arduino mega. Say you are working on a 5x5 LED Cube which has a total of 30 inputs. Then you may find the Arduino Uno or the Mini insufficient with 20GPIO pins. In such cases, you may either use a Decoder IC74595 to increase the number of pins on your Arduino Uno or you may buy an Arduino Mega instead, which reduces the fuss of extra wires, PCBs or ICs. To make your project simpler and easier in such scenarios, you may even go for an Arduino Mega 2560. The Arduino mega has 4 pairs of Tx and Rx pins so that you may connect more serial communication devices.
Which board should you choose for your Arduino projects?
To summarize, an Uno or Mini can be chosen for small and simple Arduino projects depending upon your size and cost limits. Or if you have a need for greater number of pins or serial communication devices to be processed with the same controller you can go for the Arduino Mega. And for a beginner, the Arduino Uno is the most recommended board to get started. Now go ahead and grab your first board and share your Arduino projects with us :D

Also find more about Arduino projects and program codes in My Arduino Code .

Comments