

A Power Jack is a socket used to connect an external power supply to a device, allowing it to receive electrical power for operation. It is commonly found in electronic devices such as laptops, development boards, and other portable or stationary equipment. Power Jacks are designed to provide a secure and reliable connection for DC (Direct Current) power sources.








The Power Jack typically has three pins, as described in the table below:
| Pin Name | Description |
|---|---|
| Positive (+) | Connects to the center pin of the barrel connector, usually the positive terminal. |
| Negative (-) | Connects to the outer sleeve of the barrel connector, usually the negative terminal. |
| Switch Pin | Optional pin that disconnects an internal power source when an external power source is connected. |
The Arduino UNO can be powered using a Power Jack with a 2.1mm inner diameter and 5.5mm outer diameter barrel connector. Below is an example of how to connect and use it:
// Example code to blink an LED on pin 13 when powered via the Power Jack
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
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 to the Circuit:
Overheating:
Intermittent Power Loss:
Device Not Turning On:
Q: Can I use an AC adapter with a Power Jack?
A: No, Power Jacks are designed for DC power only. Using an AC adapter may damage your device.
Q: How do I determine the correct size of the Power Jack?
A: Measure the inner and outer diameters of the barrel connector on your power supply or refer to the device's specifications.
Q: What happens if I reverse the polarity?
A: Reversing the polarity can damage your circuit. Always verify the polarity before connecting the power supply.
Q: Can I use a Power Jack for high-current applications?
A: Yes, but ensure the Power Jack's current rating matches or exceeds the current requirements of your circuit.