The Arduino Uno R3 is the world's most popular development board, featuring the powerful ATMEGA328P AU microcontroller. Perfect for beginners and professionals alike, this board serves as the foundation for thousands of projects, from simple LED blinkers to complex robotics and IoT systems.
| Parameter | Value |
|---|---|
| Microcontroller | ATMEGA328P AU (SMD version) |
| Operating Voltage | 5V |
| Input Voltage (recommended) | 7-12V |
| Input Voltage (limits) | 6-20V |
| Digital I/O Pins | 14 (6 provide PWM output) |
| Analog Input Pins | 6 |
| DC Current per I/O Pin | 40 mA |
| Flash Memory | 32 KB (0.5 KB used by bootloader) |
| SRAM | 2 KB |
| EEPROM | 1 KB |
| Clock Speed | 16 MHz |
| USB Interface | ATmega16U2 (HID-capable) |
= Key Features =
OpenSource Hardware Complete design files available for customization
ATmega16U2 USB Interface - Supports HID functionality (keyboard/mouse emulation)
Fully Compatible - Works with all Arduino shields and accessories
Multiple Power Options USB, DC jack, or Vin pin (712V recommended)
Reset Button - Easy program restart without power cycling
3.3V Output Supports lowervoltage sensors and modules
The ATMEGA328P AU is the surface-mount version of the popular ATMEGA328P microcontroller. Key technical advantages include:
√ Compatible with Arduino IDE (Version 1.8.0 and newer)
√ Works with Arduino Cloud and Arduino IoT services
√ Supports C/C++ programming with simplified syntax
√ Features automatic reset - no need to press reset button before uploading
√ Includes TX/RX LEDs for visual debugging
√ Power LED indicates when board is receiving power
√ Pin 13 LED for simple testing without any components
| Power Source | Voltage Range | Notes |
|---|---|---|
| USB Port | 5V (regulated) | Recommended for programming and testing |
| DC Jack | 7-12V (recommended) | Provides 5V output through regulator |
| Vin Pin | 7-12V | Bypasses reverse polarity protection |
| 5V Pin | 5V (regulated) | Direct power - bypasses regulator |
| 3.3V Pin | 3.3V (regulated) | For low-voltage sensors and modules |
!! Do NOT power the board through both USB and DC jack simultaneously - use only one power source at a time
| Pin | Function | Description |
|---|---|---|
| 0 | RX | Serial receive (UART) |
| 1 | TX | Serial transmit (UART) |
| 2 | Digital I/O | Interrupt capable |
| 3 | Digital I/O | PWM capable |
| 4 | Digital I/O | - |
| 5 | Digital I/O | PWM capable |
| 6 | Digital I/O | PWM capable |
| 7 | Digital I/O | - |
| 8 | Digital I/O | - |
| 9 | Digital I/O | PWM capable |
| 10 | Digital I/O | SS (SPI), PWM capable |
| 11 | Digital I/O | MOSI (SPI), PWM capable |
| 12 | Digital I/O | MISO (SPI) |
| 13 | Digital I/O | SCK (SPI), built-in LED |
| A0 | Analog Input | - |
| A1 | Analog Input | - |
| A2 | Analog Input | - |
| A3 | Analog Input | - |
| A4 | Analog Input | SDA (I2C) |
| A5 | Analog Input | SCL (I2C) |
| AREF | Reference | Analog reference voltage |
| RESET | Reset | Reset pin (active low) |
| 3.3V | Power | 3.3V output (50mA max) |
| 5V | Power | 5V output |
| GND | Ground | Ground connection |
| Vin | Power | Voltage input (7-12V) |
= Example Code: Blink LED =
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}
This example blinks the builtin LED on pin 13 the perfect starting point for beginners.
The AU variant is the surfacemount version (SMD), while the standard ATMEGA328P is the DIP version (throughhole). Both have identical specifications.
Yes, the Uno R3 operates at 5V logic level. For 3.3V sensors, use the 3.3V pin for power and voltage dividers for signal lines.
The 5V pin can supply approximately 400mA when powered via USB. When powered via the DC jack, the regulator can supply up to 500-800mA.
Press the reset button, or send a 1200bps baud signal over the USB serial port to trigger a software reset.
√ Arduino Uno R3 is compatible with Arduino IDE 1.8.0 and newer
√ Includes built-in USB to serial converter (ATmega16U2)
√ Features automatic reset for seamless uploads
√ Backed by over 10 years of community support
√ Perfect for beginners, students, and professionals