Arduino "Getting Started" Tutorial: Hardware
Arduino "Getting Started" Tutorial: Hardware
Introduction: This tutorial will introduce you to the Arduino board and how to use it. We will also learn
some basics required to implement the equivalent of the “Hello World” program on the Arduino board. The
hardware version of “Hello World” is to make an LED (Light Emitting Diode) blink, instead of printing a
message (since we have no terminal to print to).
What is Arduino?
The Arduino is a sophisticated single-board computer that can be programmed to sense and control the
physical world around us. It can be used as a dedicated computer for industrial automation or to control a
robot. It can take input from a variety of sensors connected to its input pins. It can process the information
locally or can send data to another computer for remote computation. The processed information can then
be used to make decisions and/or control motors or other actuators connected to the board’s output pins.
Hardware
The processing unit on the Arduino is the ATmega328 microcontroller integrated circuit. It uses input and
output ports/pins to communicate with the outside world. Some of the microcontroller’s inputs and outputs
are connected to peripherals and other electronic components on the board itself, and others are available
for use as sensor inputs or output to other devices. The microcontroller can be programmed using an open
source programming platform based on the C programming language and a “wiring” language that is very
easy to use.
1
Microcontroller ATmega328
Operating Voltage 5V
Input Voltage (recommended) 7–12V
Input Voltage (limits) 6–20V
Digital I/O Pins 14 (of which 6 provide PWM output)
Analog Input Pins 6
DC Current per I/O Pin 40 mA
DC Current for 3.3V Pin 50 mA
Flash Memory 32 KB (ATmega328) of which 0.5 KB is used by the bootloader
SRAM 2 KB (ATmega328)
EEPROM 1 KB (ATmega328)
Clock Speed 16 MHz
Powering the Arduino Board The board can be powered through the USB connector or through an
external power supply. USB power is sufficient for blinking LEDS and other applications where the total
current required is small. For the external power supply, you can use a battery, an AC-DC adapter with an
appropriate output voltage, or a desktop power supply. The power pins on the board are:
VIN: The input voltage pin for Arduino for external power source. You can supply voltage through
this pin, or, if supplying voltage via the power jack, access it through this pin.
5V: This pin outputs a regulated 5V from the regulator on the board. The board can be supplied
with power either from the DC power jack (7–12V), the USB connector (5V), or the VIN pin of the
board (7-12V). Supplying voltage via the 5V or 3.3V pins bypasses the regulator, and can damage your
board. Generally, you should not wire a battery or power supply directly to this pin!
3V3: A 3.3V supply generated by the on-board regulator. Maximum current draw is 50 mA.
Input and Output: There are 14 digital pins/ports on the Arduino UNO. They all operate at 5V and
can be used for input or output. Each pin can give or receive approximately 40mA of current. There are 6
analog input pins/ports, labeled A0 through A5. Each analog input pin provides 10 bits of resolution (i.e.
1024 different values). By default they measure from ground to 5 volts.
Some of the pins on Arduino UNO board can also be used for other specialized function.
Serial: pin-0 and pin-1 can be configured to be used receiving and transmitting serial data to peripheral
device or computer.
PWM: pin-3, pin-5, pin-6, pin-9, pin-10, pin-11 can be configured as Pulse width modulation (PWM)
outputs.
SPI: pin-10 (SS), pin-11 (MOSI), pin-12 (MISO), pin-13 (SCK) pins can be configured for serial
communication using SPI protocol.
LED: An SMD-LED is connected to pin-13 of the µC. When the pin has logic-high, the LED is on,
and when it is logic-low it is off.
TWI: pin-A4 (SDA) and pin-A5 (SCL) pin support TWI communication.
AREF: Reference voltage for analog input. By default the reference voltage is from 0 5 Volts.
2
Further details and Schematics of the open-source board is available at
http://arduino.cc/en/uploads/Main/arduino_Uno_Rev3-02-TH.zip.
http://arduino.cc/en/uploads/Main/Arduino_Uno_Rev3-schematic.pdf.
http://arduino.cc/en/Main/ArduinoBoardUno.
Software
The Arduino Uno can be programmed with the open-source Arduino software. The programming platform
enables you to write and edit your program in wiring-language. It can cross compile your code for ATmega328.
It can also upload your program using the same software.
The µC on the Arduino UNO comes with a pre-burned boot-loader, which allows to upload new code
to it without the use of an external hardware programmer. Instead of using a physical “Reset” button the
Arduino Uno is designed in a way that allows it to be reset by software running on a connected computer.
The Arduino programs can be categorized in 3 parts,structure, values and functions. For details on
programming please refer to http://arduino.cc/en/Reference/HomePage. The basic structure of the
programming language is simple. It will always contain 2 parts/functions, one is the setup() function,
which is the preparation part. The other is the loop() function which is the execution part. Therefore a
simple sketch of your program will look like as:
void setup()
{
\\statements here
}
void loop()
{
\\statements here
}
You are now ready to write, compile and upload your program for Arduino board.
3
“Hello World”- Blinking LED
For this program we need the hardware given as follows:
1. Arduino UNO R3
2. Bread-board
3. Jumper (connecting wires)
4. Light emitting diode (LED)
5. Resistor
Identifying the positive and the negative terminal of the LED is important before implementing the
circuit. Figure 3 shows the table to identify the value of resistor without the use of a multi-meter.
Figure 2: Equipment and Components Required, reprinted from Beginning to Android with Arduino
You can connect the circuit as shown in the Figure 4a,4b. You can see that the LED is connected to
pin-13 and to ground via 220Ω resistor. The resistor is there to control the current in the LED. Now, you
are ready to write your code to program ATmega328.
Referring to the installation of the Arduino software, once you run the shell script in Ubuntu or the open
the executable in Windows, you will see the Arduino IDE as shown in the Figure 5.
The Blinking LED program is part of the public domain examples program as given on th arduino
website. You can directly open the program from menu on the top left corner by following the hierarchy,
File-Examples-Basics-Blink. A program will be opened in a separate window and will look like as follows:
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
4
Figure 3: Resistor Coloring Code, reprinted from http://www.elexp.com/t_resist.htm
// give it a name:
int led = 13;
5
Figure 5: Arduino IDE for cross-platform compilation
Press cntrl-R to compile the code. If there is no errors, then press cntrl-U to upload the compiled
program on your µC Flash memory. As told earlier, once the program is uploaded successfully, the board
will automatically get a reset and after a few second will start blinking your LED.
Exercise
Now, the next assignment is to implement a digital switch using the board.
We need 1 digital on-off switch and 1- 10Ω resistor and some more connecting wires.
We will also make use of the 5V input pin of the board and pin-2 as digital input pin.
6
Connect the circuit as shown in figure 6.
Use the function pinMode() to declare the mode of pin-2.
Use the if statement to check the condition of the digital switch or if the digital input pin is High.
If the input is HIGH then ”Blink” the LED, otherwise, the LED should not blink.
Use digitalRead() function to check the condition of the pin-2.
References
http://arduino.cc.
http://arduino.cc/en/Main/ArduinoBoardUno.
http://arduino.cc/en/Guide/Introduction.
www.atmel.com/Images/doc8161.pdf.
http://arduino.cc/en/Tutorial/Button
http://arduino.cc/en/Tutorial/Blink