Introduction to Microcontrollers (Arduino)

Introduction to Microcontrollers (Arduino)


Microcontrollers #

Microcontrollers are all around you. They are inside many of the devices that you use in your everyday life. They come in many shapes and sizes, but generally look something like this:

ATMega328

ATMega328p microcontroller Image by oomlout CC BY-SA 2.0

Or nowadays most likely more like this:

ATMega328 SMD

ATMega328p microcontroller Image by oomlout CC BY-SA 2.0

…or like this

RP2040

Raspberry Pi RP2040 microcontroller. Image by Raspberry Pi Foundation CC BY-SA 4.0

Microcontrollers are essentially small computers built into one single chip. You can connect input and output devices to them. You can also program them to do specific things with those input and output devices. Microcontrollers are used when you need a small, low-power device to read data from sensors or to control some output devices.

Note that microcontrollers and microprocessors are two different things. Microprocessor is the CPU that you have inside your laptop or desktop computer.

For example, Raspberry Pi computers use microprocessors not microcontrollers, but the Raspberry Pi company also makes a microcontroller called RP2040 and the Raspberry Pi Pico microcontroller board.

In 2023, we use this microcontroller:

In older runs of the course we have used these:

Time Before Arduino #

Before the Arduino boards came along, there were many attempts at creating simple (and not so simple) development boards for microcontrollers that could be used in education and prototyping. Some examples:

Quite many of these were/are quite hard to start working with and none of them were able to become as ubiquitous in the educational/hobbyist/art/design world as the Arduino boards and all the thousands of variations and clones based on the Arduino have. Things started to change around 2003 because of a project called Wiring.

Wiring, 2003 #

Arduino is based on a project called Wiring originally created by Hernando Barragán as his Master’s Thesis project at Interaction Design Institute Ivrea (IDII) in Italy in 2003. You can read the thesis here. The thesis has a nice benchmarking section that looks into some of the options that were available at the time.

The way Wiring worked and how the software looked like was based on Processing. The attempt was to create an environment for working with microcontrollers, physical computing, electronics and programming that would be easily approached by beginners and non-engineers. Just like Processing was attempting to do for programming in 2001.

Hernando Barragán has never been properly (or enough) credited for his work in making the Arduino what it is now so I feel that it is important that I highlight his work here on this page. See below for an interesting text on the history of Arduino.

Arduino #

Arduino Documentary, 2010.

Arduino was created in 2005 as a fork of the Wiring project based on a cheaper microcontroller. The original team behind the Arduino project was:

  • Massimo Banzi (thesis advisor for the Wiring thesis by Hernando Barragán)
  • David Cuartielles
  • Tom Igoe
  • David Mellis
  • (Gianluca Martino) not officially mentioned anymore on the Arduino website, see below to learn why not.

Arduino means multiple things:

You don’t need to use the Arduino IDE or even the Arduino functions to program an Arduino board. You also don’t need to have a board made by Arduino to use the Arduino IDE.

You can use boards made by other manufacturers or you can even make your own boards! The IDE and the code works for many other boards and microcontrollers as well.

This all seems very confusing, but don’t worry. Things will slowly start to make sense.

The Drama #

You wouldn’t think that there could be a lot of interesting controversy in the world of open source electronics, but just like anything that turns into a multimillion business, there will be people fighting for the money and the fame. There was a very strange but interesting legal battle that happened between 2015–2017. Take a look at the following articles, if you have a couple of hours to spend on digging through the drama:

Arduino IDE #

Arduino just recently released an updated version (2.0) of the Arduino IDE. We are going to use that. Just note that the computers at Aalto still have the older version.

Arduino IDE 1.8.19

Arduino IDE 2.0

The old and new version look slightly different but the code will be the same. You can also use the older version of the software if you want/need to.

Arduino boards used in this course #

Arduino Uno R4 WiFi #

Arduino Uno R4 WiFi

The board that you have in your kit is called Arduino Uno R4 WiFi and it’s the one that we are mainly going to use for everything in this class. You might also want to use some other boards depending on the requirements of your final project.


Arduino Uno R3 #

Arduino Uno

Arduino Uno R3 is the basic model of the Arduino that is based on the ATMega328 8-bit microcontroller. The ATMega328 is quite old and not really recommended to be used on any new designs anymore. There are many newer and more powerful microcontrollers available, but it is still very good place to start with for the following reasons:

  • It is quite robust and durable, it’s not very easy to break one (compared to many of the newer models).
  • If you manage to burn or otherwise break the microcontroller chip, it can be easily replaced without soldering.
  • So many of the examples you find online will be based on the Uno so it is going to be easier to start learning with it.
  • Most of the code that you will create during this class will not be anywhere near hitting the limits of the Uno R3/ATMega328.

Arduino RP2040 Connect #

Arduino RP2040 Connect

The other microcontroller we have quite many of is the Arduino RP2040 Connect. It’s a much more powerful microcontroller than the Uno. It also has two built-in sensors (IMU, microphone) as well as a wireless chip that supports WiFi and Bluetooth.

Please be very careful with these boards! There are two things that can fairly easily break on them.

Arduino RP2040 Connect

  1. The USB connector. Always unplug your USB cable from the board when you pack it up into your kit. Also be careful not to drop the board with the USB cable connected to it.
  2. The antenna. The antenna is very fragile and can also snap off quite easily if you drop the board or otherwise hit the antenna.

Features:


Example done in class #

Class Example

Class Example

Class Example

Class Example

int button;
int light;
void setup() {
  // put your setup code here, to run once:
  pinMode(9,OUTPUT);
  pinMode(2,INPUT);
  Serial.begin(9600);
}

void loop() {
  // put your main code here, to run repeatedly:
 button = digitalRead(2);
 light = analogRead(A0);
 Serial.println(light);
 if(button==HIGH){
   digitalWrite(9,HIGH);
 }else{
   digitalWrite(9,LOW);
 }
 delay(10);
}

Arduino Basics