

The Arduino Uno R3 is a microcontroller board developed by Arduino, based on the ATmega328P microcontroller. It is one of the most popular and versatile boards in the Arduino ecosystem, designed for beginners and professionals alike. The board features 14 digital input/output pins, 6 analog inputs, a USB connection for programming, and a power jack for external power supply. Its simplicity and extensive community support make it ideal for prototyping, learning electronics, and building interactive projects.








| Parameter | Specification |
|---|---|
| Microcontroller | ATmega328P |
| Operating Voltage | 5V |
| Input Voltage (recommended) | 7-12V |
| Input Voltage (limit) | 6-20V |
| Digital I/O Pins | 14 (6 provide PWM output) |
| Analog Input Pins | 6 |
| DC Current per I/O Pin | 20 mA |
| Flash Memory | 32 KB (0.5 KB used by bootloader) |
| SRAM | 2 KB |
| EEPROM | 1 KB |
| Clock Speed | 16 MHz |
| USB Connector | Type-B |
| Dimensions | 68.6 mm x 53.4 mm |
| Weight | 25 g |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1-14 | Digital Pins | General-purpose digital I/O pins. Pins 3, 5, 6, 9, 10, and 11 support PWM. |
| A0-A5 | Analog Pins | Analog input pins for reading sensor data (0-5V range). |
| VIN | VIN | Input voltage to the board when using an external power source (7-12V). |
| GND | Ground | Ground pins for completing the circuit. |
| 5V | 5V | Regulated 5V output for powering external components. |
| 3.3V | 3.3V | Regulated 3.3V output for low-voltage components. |
| RESET | Reset | Resets the microcontroller. |
| IOREF | IO Reference | Provides the voltage reference for the I/O pins. |
| USB | USB Connector | Used for programming and serial communication. |
Powering the Board:
Programming:
Connecting Components:
The following example demonstrates how to blink an LED connected to pin 13:
// This example code blinks an LED connected to digital pin 13.
// The LED will turn on for 1 second, then off for 1 second, repeatedly.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
The board is not detected by the computer:
Code does not upload to the board:
The board is overheating:
Analog readings are unstable:
Q: Can I power the Arduino Uno R3 with a battery?
A: Yes, you can use a 9V battery connected to the DC power jack or the VIN pin.
Q: What is the maximum current the board can supply?
A: The 5V pin can supply up to 500 mA when powered via USB, or up to 1A when using an external power supply.
Q: Can I use the Arduino Uno R3 for wireless communication?
A: Yes, you can use external modules like Bluetooth, Wi-Fi (e.g., ESP8266), or RF modules for wireless communication.
Q: Is the Arduino Uno R3 compatible with shields?
A: Yes, the Arduino Uno R3 is compatible with a wide range of shields designed for the Uno form factor.
This concludes the documentation for the Arduino Uno R3. For further details, visit the official Arduino website.