Arduino Uno
Arduino Uno
Pin Description
Power Vin, 3.3V, 5V, GND Vin: Input voltage to Arduino when using an external power
source.
5V: Regulated power supply used to power microcontroller
and other components on the board.
3.3V: 3.3V supply generated by on-board voltage regulator.
Maximum current draw is 50mA.
GND: ground pins.
Serial 0(Rx), 1(Tx) Used to receive and transmit TTL serial data.
Operating Voltage 5V
SRAM 2 KB
EEPROM 1 KB
Overview
Arduino Uno is a microcontroller board based on 8-bit ATmega328P microcontroller. Along with
ATmega328P, it consists other components such as crystal oscillator, serial communication, voltage
regulator, etc. to support the microcontroller. Arduino Uno has 14 digital input/output pins (out of which 6
can be used as PWM outputs), 6 analog input pins, a USB connection, A Power barrel jack, an ICSP
header and a reset button.
Serial Pins 0 (Rx) and 1 (Tx): Rx and Tx pins are used to receive and transmit TTL serial data. They are
connected with the corresponding ATmega328P USB to TTL serial chip.
External Interrupt Pins 2 and 3: These pins can be configured to trigger an interrupt on a low value, a
rising or falling edge, or a change in value.
PWM Pins 3, 5, 6, 9 and 11: These pins provide an 8-bit PWM output by using analogWrite() function.
SPI Pins 10 (SS), 11 (MOSI), 12 (MISO) and 13 (SCK): These pins are used for SPI communication.
In-built LED Pin 13: This pin is connected with a built-in LED, when pin 13 is HIGH – LED is on and when pin
13 is LOW, it’s off.
Along with 14 Digital pins, there are 6 analog input pins, each of which provides 10 bits of resolution, i.e.
1024 different values. They measure from 0 to 5 volts but this limit can be increased by using AREF pin with
analog Reference() function.
Analog pin 4 (SDA) and pin 5 (SCA) also used for TWI communication using Wire library.
AREF: Used to provide reference voltage for analog inputs with analogReference() function.
Reset Pin: Making this pin LOW, resets the microcontroller.
Communication
Arduino can be used to communicate with a computer, another Arduino board or other microcontrollers.
The ATmega328P microcontroller provides UART TTL (5V) serial communication which can be done using
digital pin 0 (Rx) and digital pin 1 (Tx). An ATmega16U2 on the board channels this serial communication
over USB and appears as a virtual com port to software on the computer. The ATmega16U2 firmware uses
the standard USB COM drivers, and no external driver is needed. However, on Windows, a .inf file is
required. The Arduino software includes a serial monitor which allows simple textual data to be sent to and
from the Arduino board. There are two RX and TX LEDs on the arduino board which will flash when data is
being transmitted via the USB-to-serial chip and USB connection to the computer (not for serial
communication on pins 0 and 1). A SoftwareSerial library allows for serial communication on any of the
Uno's digital pins. The ATmega328P also supports I2C (TWI) and SPI communication. The Arduino software
includes a Wire library to simplify use of the I2C bus.
Physical Characteristics
The maximum length and width of the Uno PCB are 2.7 and 2.1 inches respectively, with the USB
connector and power jack extending beyond the former dimension. Four screw holes allow the board to
be attached to a surface or case. Note that the distance between digital pins 7 and 8 is 160 mil (0.16"),
not an even multiple of the 100 mil spacing of the other pins.