

The VCC 5V is a voltage supply that provides a constant 5 volts, manufactured by Arduino with the part ID "UNO." It is commonly used as a power source for digital circuits, microcontrollers, and other low-power electronic devices. This component is essential for powering devices that require a stable 5V input, ensuring reliable operation and compatibility with a wide range of components.








The VCC 5V output is typically derived from a voltage regulator or USB power source on the Arduino UNO board. Below are the key technical details:
| Parameter | Specification |
|---|---|
| Voltage Output | 5V DC ± 5% |
| Maximum Current | 500 mA (via USB) / 1A (via VIN input) |
| Regulation Type | Linear |
| Ripple and Noise | < 50 mV |
| Operating Temperature | -40°C to 85°C |
The VCC 5V pin is available on the Arduino UNO board and is used to supply power to external components. Below is the pin description:
| Pin Name | Pin Type | Description |
|---|---|---|
| VCC 5V | Power Output | Provides a constant 5V DC output for external use. |
| GND | Ground | Common ground reference for the circuit. |
Below is an example of using the VCC 5V pin to power an LED with a current-limiting resistor:
// Example: Powering an LED using the VCC 5V pin on Arduino UNO
// Define the pin connected to the LED
const int ledPin = 13; // Built-in LED on Arduino UNO
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
// Note: The LED is powered by the VCC 5V pin, and a resistor is used to limit
// the current to prevent damage to the LED.
No Voltage Output from VCC 5V Pin
Voltage Drops Below 5V
Components Not Functioning Properly
Overheating of Arduino UNO
Q: Can I use the VCC 5V pin to power the Arduino UNO itself?
A: No, the VCC 5V pin is an output pin and cannot be used to power the Arduino UNO. Use the USB port or VIN pin for powering the board.
Q: Is the VCC 5V pin always active?
A: The VCC 5V pin is active only when the Arduino UNO is powered via USB or an external power source.
Q: Can I connect multiple components to the VCC 5V pin?
A: Yes, as long as the total current draw does not exceed the maximum rating (500 mA via USB or 1A via VIN).
Q: What happens if I accidentally short the VCC 5V pin to GND?
A: Shorting the VCC 5V pin to GND may cause the Arduino UNO to shut down or damage the board. Always double-check connections to avoid short circuits.