









| Pin Name | Description | Notes |
|---|---|---|
| VCC | Positive 5V output | Connect to the power input of your circuit. |
| GND | Ground (0V reference) | Connect to the ground of your circuit. |
Connecting the VCC 5V to a Circuit:
Important Considerations:
Using VCC 5V with an Arduino UNO:
// Example: Blink an LED using Arduino UNO's 5V pin
// Connect the LED's anode (longer leg) to a 220-ohm resistor, then to pin 13.
// Connect the LED's cathode (shorter leg) to GND.
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
}
No Power Output:
Voltage Drop:
Overheating:
Q: Can I use the VCC 5V to power a 3.3V device?
Q: Is it safe to connect multiple devices to the same VCC 5V supply?
Q: How can I protect my circuit from voltage spikes?