

The Power Jack (Manufacturer: SparkFun, Part ID: PRT-00119) is a socket designed to connect an external power supply to an electronic device. It serves as a reliable interface for delivering electrical power, ensuring stable operation of the connected circuit or device. This component is commonly used in projects requiring a DC power source, such as Arduino-based systems, robotics, and other embedded electronics.








The following table outlines the key technical details of the SparkFun Power Jack (PRT-00119):
| Specification | Details |
|---|---|
| Manufacturer | SparkFun |
| Part ID | PRT-00119 |
| Connector Type | Barrel Jack (Female) |
| Barrel Dimensions | 5.5 mm outer diameter, 2.1 mm inner diameter |
| Voltage Rating | Up to 24V DC |
| Current Rating | Up to 2A |
| Mounting Style | Through-hole |
| Material | Plastic housing with metal contacts |
| Operating Temperature | -40°C to +85°C |
The Power Jack has three pins, as described in the table below:
| Pin | Name | Description |
|---|---|---|
| 1 | Positive (V+) | Connects to the positive terminal of the DC power source. |
| 2 | Negative (V-) | Connects to the negative terminal (ground) of the DC power source. |
| 3 | Switch Pin | Optional pin that disconnects a circuit when a plug is inserted into the jack. |
Mounting the Power Jack:
Connecting the Power Source:
Wiring the Pins:
Testing the Circuit:
The Power Jack can be used to power an Arduino UNO board. Below is an example of how to connect and use it:
If you are using the Power Jack to power an Arduino UNO, you can upload the following code to test the board's functionality:
// Simple LED Blink Test for Arduino UNO
// This code assumes an LED is connected to pin 13 with a resistor.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output for the LED
}
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 of the Power Jack:
Intermittent Power Loss:
Switch Pin Not Working:
Q1: Can I use this Power Jack with a 12V DC power supply?
A1: Yes, the Power Jack supports up to 24V DC, so a 12V DC power supply is compatible.
Q2: Is the Power Jack compatible with a 5.5 mm x 2.5 mm barrel plug?
A2: No, the Power Jack is designed for a 5.5 mm x 2.1 mm barrel plug. Using a 2.5 mm inner diameter plug may result in a loose connection.
Q3: Can I use the Power Jack for AC power?
A3: No, the Power Jack is designed for DC power only. Using AC power may damage the component and connected devices.
Q4: What happens if I reverse the polarity of the power supply?
A4: Reversing the polarity can damage your circuit. Always double-check the polarity before connecting the power supply.
By following this documentation, you can effectively integrate the SparkFun Power Jack (PRT-00119) into your electronic projects.