

Placa 2, manufactured by Arduino with the part ID "UNO," is a versatile printed circuit board (PCB) designed for mounting electronic components and establishing electrical connections between them. It serves as a foundational platform for prototyping, testing, and deploying electronic circuits. Placa 2 is widely used in educational, hobbyist, and professional projects due to its reliability and ease of use.








| Parameter | Specification |
|---|---|
| Manufacturer | Arduino |
| Part ID | UNO |
| PCB Type | Single-layer or multi-layer PCB |
| Material | FR4 (Flame Retardant 4) |
| Dimensions | 68.6 mm x 53.4 mm |
| Operating Voltage | 5V |
| Input Voltage (recommended) | 7-12V |
| Input Voltage (limit) | 6-20V |
| Digital I/O Pins | 14 (6 PWM outputs) |
| 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 |
| 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 | Voltage Input | External power supply input (7-12V recommended). |
| GND | Ground | Ground connection for the circuit. |
| 5V | 5V Output | Regulated 5V output for powering external components. |
| 3.3V | 3.3V Output | Regulated 3.3V output for low-power components. |
| RESET | Reset Pin | Resets the microcontroller when pulled LOW. |
Below is an example code snippet to blink an LED connected to digital pin 13:
// This code blinks an LED connected to pin 13 on the Arduino UNO board.
// The LED will turn ON for 1 second and OFF for 1 second in a loop.
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
}
Board Not Powering On:
Code Not Uploading:
Components Not Responding:
Overheating:
By following this documentation, users can effectively utilize the Placa 2 PCB for a wide range of electronic projects.