1. Getting Ready

โ˜๏ธŽ home โ˜ž next chapter: Getting Started

The Arduino Platform

Arduino is composed of two major parts:

  1. the Arduino board: the piece of hardware you work on when you build your objects
  2. the Arduino software: an editor (IDE) that runs on your computer or in a webbrowser. In the editor you write a sketch (a computer program with a set of instructions) that you upload to the Arduino board. This program tells the board what to do.

The Arduino website is a nice place to start exploring projects built on Arduino, learn, ask for help etc.
๐Ÿ‘‰๐Ÿป Learn the basics of Arduino through the Built-in Examples collection tutorials.
๐Ÿ‘‰๐Ÿป a vast repository of tutorials
๐Ÿ‘‰๐Ÿป The projecthub documents projects created by the arduino community
๐Ÿ‘‰๐Ÿป the Forum

The Arduino Board

The Arduino board is a small microcontroller or, in other words, a small computer chip on a circuitboard. This computer is at least a thousand times less powerful than your laptop, but it is also a lot cheaper and very useful to build applied devices.

There are many different Arduino boards on the market. All official boards are listed here. In the studio we mainly work with the Arduino Uno Rev3.

Looking at the Arduino board: youโ€™ll see a black chip with 28 legs. That chip is the ATmega328P, the heart of your board. The arduino UNO / ATmega328 features:

  • 14 Digital IO pins (pins 0โ€“13). These can be inputs or outputs, which is specified by the sketch you create.
  • 6 Analog In pins (pins A0โ€“5). These dedicated analog input pins take analog values (0-5V) (i.e. voltage readings from a sensor) and convert them into a number between 0 and 1023 (or 1024 values = 10 bit).
  • 6 PWM pins (pins 3, 5, 6, 9, 10, and 11). These are actually 6 of the digital pins that can be reprogrammed for analog output. They are indicated with a ~(tilde).
  • The board can be powered from your computerโ€™s USB port (5V), most USB chargers, or an AC adapter (7-12V recommended, 2.1mm barrel tip, center positive).
  • And another Atmega16U2 programmed as a USB-to-serial converter.
  • ...

Image
The complete parts of an Arduino Uno

The arduino reference can be found here. The complete schematic of Arduino Uno can be found here.

The Software (IDE)

The programs you write for your Arduino are known as sketches. They are written in C/C++ using a code editor. There are 3 options made available by the Arduino team to program your boards:

  • An IDE or integrated development environment. It is software you install and run on your computer.
  • A web editor to code online. You need to make a login to save your sketches in the cloud.
  • And CLI or Command Line Interface, if you don't want to use a user interface.

First we wil download & install the Arduino IDE 2.* and then we go through the process of uploading a Sketch from the IDE to the board.

the Arduino IDE Installation Guide

Download the latest stable version for your operating system from the Arduino Software Page or, alternatively, start by selecting your board on the website and then follow the quickstart guide.

Upload a Sketch with the Arduino IDE 2.*

The process for setting up your Arduino and connecting the software to your board slightly differs related on the computer you are using and the Arduino board itself.

First we need to select the board that we are going to use. We can do this by navigating to Tools > Port > {Board}. The board(s) that are connected to your computer should appear here, and we need to select it by clicking it. You can also do this in the toolbar as you might have noticed.

Image
screenshot of the board & port select procedure

To upload some code we first take a look at the toolbar at the top of the editor.
At the very left, there are 2 buttons: a checkmark, used used to verify and an arrow pointing right, used to upload.
The verify tool simply goes through your sketch, checks for errors and compiles it. The upload tool does the same, but when it finishes compiling, it also uploads it to the board.

Image
screenshot of the verify and upload buttons

โšก๏ธโšก๏ธโšก๏ธ To conclude this chapter you can follow this guide if you want to get basics of the Arduino IDE 2.0 with a detailled overview of the UI, links to special features as autocompletion and debugging.

-- Last Modified on --