![](https://electroboat.in/uploads/media/2024/uno-r3-development-board-compatible-with-arduino-with-usb-cable-usb-chip-ch340-26239-27-B.jpg)
![](https://electroboat.in/media/image?path=uploads/media/2024/arduino-uno-smd-and-blue-usb-cable.jpg&width=620&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2025/arduino-smd-1.jpg&width=620&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/uno-r3-development-board-compatible-with-arduino-with-usb-cable-usb-chip-ch340-26239-27-B.jpg&width=175&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/arduino-uno-smd-and-blue-usb-cable.jpg&width=172&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2025/arduino-smd-1.jpg&width=172&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/uno-r3-development-board-compatible-with-arduino-with-usb-cable-usb-chip-ch340-26239-27-B.jpg&width=300&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/arduino-uno-smd-and-blue-usb-cable.jpg&width=300&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2025/arduino-smd-1.jpg&width=300&quality=80)
Arduino UNO R3 SMD Atmega328P Board
Arduino Uno is a microcontroller board based on the ATmega328P (datasheet). It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz ceramic resonator (CSTCE16M0V53-R0), a USB connection, a power jack, an ICSP header and a reset button.
₹ 215 ₹360
360
![](https://electroboat.in/assets/front_end/classic/images/cod_logo.png)
![](https://electroboat.in/assets/front_end/classic/images/cancelable.png)
![](https://electroboat.in/assets/front_end/classic/images/returnable.png)
Add FAQ
The Arduino Uno SMD (Surface-Mount Device) board is a variant of the Arduino Uno, designed with surface-mount components rather than through-hole components. Here's a detailed description of the Arduino Uno SMD board:
Overview:
-
Microcontroller: The Arduino Uno SMD board is based on the ATmega328P microcontroller, the same as the through-hole Arduino Uno. The ATmega328P operates at 5V logic and has 32KB of flash memory for storing code.
-
Form Factor: It follows the same physical dimensions and pinout as the original Arduino Uno board, making it compatible with shields and accessories designed for the Uno.
-
Power Supply:
- USB Power: It can be powered via USB using a micro-USB connector, providing 5V DC.
- External Power: Alternatively, it can be powered through an external DC power supply connected to the VIN pin, which can range from 7V to 12V DC.
-
Programming: Like the Arduino Uno, it can be programmed via the Arduino IDE using a USB connection to your computer. The microcontroller includes a bootloader that allows you to upload sketches over USB.
-
Clock Speed: The ATmega328P operates at a clock speed of 16 MHz.
Key Features:
- Digital I/O Pins: It has 14 digital input/output pins (of which 6 can be used as PWM outputs).
- Analog Inputs: It includes 6 analog input pins.
- UART, SPI, I2C: Supports serial communication (UART), SPI, and I2C protocols for interfacing with other devices and sensors.
- Reset Button: Allows you to reset the microcontroller and start your program execution from the beginning.
Differences from Through-Hole Arduino Uno:
-
Component Type: The main difference lies in the type of components used. The SMD version uses surface-mount technology (SMT), which allows for smaller components to be mounted directly onto the PCB, making the board more compact and potentially cheaper to manufacture.
-
Size and Weight: Due to the use of SMD components, the overall size and weight of the Arduino Uno SMD board might be slightly different from the through-hole version, but functionality remains the same.
Typical Applications:
- Prototyping: Ideal for rapid prototyping of electronic projects due to its ease of use and compatibility with a wide range of sensors and shields.
- Education: Widely used in educational settings to teach programming, electronics, and microcontroller concepts.
- DIY Projects: Popular among hobbyists and makers for creating various interactive and automated projects.
Item Type: |
Dev. Board |
---|---|
Model Type |
Uno |
Model No.: |
A000073 |
Microcontroller |
Atmega |
Microcontroller Chip |
ATmega328P |
Operating Voltage (VDC) |
5 |
Input Voltage (V) |
6-20V |
Analog I/O Pins |
6 |
Digital I/O Pins |
14 (of which 6 provide PWM output) |
PWM Digital I/O Pins |
6 |
Clock Speed |
16 MHz |
Flash Memory: |
32 KB (ATmega32u4) of which 4 KB used by bootloader |
SRAM |
2 KB (ATmega328P) |
EEPROM |
1 KB (ATmega328P) |
Weight (g): |
25 |
Length (mm): |
68.6 |
Width (mm): |
53.4 |
Shipping Weight | 0.04 kg |
Shipping Dimensions | 7 × 5 × 3 cm |
// This program will blink the onboard LED of the Arduino Uno connected to pin 13
void setup() {
// Initialize pin 13 as an output pin
pinMode(13, OUTPUT);
}
void loop() {
// Turn the LED on by setting the pin 13 high
digitalWrite(13, HIGH);
// Wait for 1000 milliseconds (1 second)
delay(1000);
// Turn the LED off by setting the pin 13 low
digitalWrite(13, LOW);
// Wait for another 1000 milliseconds (1 second)
delay(1000);
}
0 Reviews For this Product
![](https://electroboat.in/uploads/seller/electroboat_logo3.jpeg)