

The Arduino Nano is a compact microcontroller board based on the ATmega328P microcontroller. It is designed for easy integration into a wide range of electronic projects, offering a small form factor without compromising functionality. The Nano is equipped with digital and analog input/output pins, USB connectivity for programming, and compatibility with the Arduino IDE, making it a versatile choice for both beginners and experienced developers.








| Parameter | Specification |
|---|---|
| Microcontroller | ATmega328P |
| Operating Voltage | 5V |
| Input Voltage (recommended) | 7-12V |
| Input Voltage (limit) | 6-20V |
| Digital I/O Pins | 14 (6 PWM outputs) |
| Analog Input Pins | 8 |
| DC Current per I/O Pin | 40 mA |
| Flash Memory | 32 KB (2 KB used by bootloader) |
| SRAM | 2 KB |
| EEPROM | 1 KB |
| Clock Speed | 16 MHz |
| USB Connectivity | Mini-B USB |
| Dimensions | 18 x 45 mm |
| Weight | ~7 g |
The Arduino Nano has a total of 30 pins, including power, digital, and analog pins. Below is the pinout description:
| Pin | Name | Description |
|---|---|---|
| 1 | VIN | Input voltage to the board when using an external power source (7-12V recommended). |
| 2 | GND | Ground pins (multiple GND pins available). |
| 3 | 5V | Regulated 5V output from the onboard voltage regulator. |
| 4 | 3.3V | Regulated 3.3V output (limited to 50 mA). |
| 5 | AREF | Reference voltage for analog inputs. |
| 6 | RESET | Resets the microcontroller when pulled LOW. |
| Pin | Name | Description |
|---|---|---|
| D0-D13 | Digital | General-purpose digital input/output pins. Pins D3, D5, D6, D9, D10, and D11 support PWM. |
| Pin | Name | Description |
|---|---|---|
| A0-A7 | Analog | Analog input pins capable of reading voltages between 0 and 5V. |
| Pin | Name | Description |
|---|---|---|
| D0, D1 | RX, TX | UART communication pins for serial communication. |
| D10-D13 | SPI | SPI communication pins (SS, MOSI, MISO, SCK). |
| A4, A5 | I2C | I2C communication pins (SDA, SCL). |
Powering the Board:
Programming the Board:
Connecting Components:
Below is an example code to blink an LED connected to pin D13:
// Blink an LED connected to pin D13
// The LED will turn ON for 1 second and OFF for 1 second repeatedly.
void setup() {
pinMode(13, OUTPUT); // Set pin D13 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 Arduino Nano is not detected by the computer:
Code upload fails with an error:
The board overheats:
Analog readings are unstable:
Q: Can the Arduino Nano run on 3.3V?
A: Yes, the Nano can operate at 3.3V, but some peripherals may not function correctly due to voltage limitations.
Q: How do I reset the Arduino Nano?
A: Press the RESET button on the board or connect the RESET pin to GND momentarily.
Q: Can I use the Arduino Nano for wireless communication?
A: Yes, you can connect wireless modules like Bluetooth (HC-05/HC-06) or Wi-Fi (ESP8266) to the Nano via UART or SPI/I2C.
This concludes the documentation for the Arduino Nano (Official Part Number: A000005). For further details, refer to the official Arduino website.