

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):
| Parameter | Specification |
|---|---|
| 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 5A |
| 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 supply. |
| 2 | Negative (V-) | Connects to the negative terminal (ground) of the DC power supply. |
| 3 | Switch Pin | Optional pin that disconnects when a plug is inserted, useful for power control. |
Mounting the Power Jack:
Connecting Power:
Selecting a Compatible Plug:
Testing the Connection:
The Power Jack can be used to power an Arduino UNO by connecting a 9V DC adapter. Below is an example Arduino sketch to test the setup:
// Example Arduino code to blink an LED when powered via the Power Jack
// Ensure the Power Jack is connected to a 9V DC adapter
const int ledPin = 13; // Built-in LED pin 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
}
No Power to the Circuit:
Overheating of the Power Jack:
Intermittent Power Loss:
Switch Pin Not Functioning:
Q1: Can I use the Power Jack with an AC adapter?
A1: No, the Power Jack is designed for DC power only. Using an AC adapter may damage your circuit.
Q2: What is the recommended voltage for powering an Arduino UNO using this Power Jack?
A2: A 9V DC adapter is recommended for powering an Arduino UNO through the Power Jack.
Q3: Can I use the Power Jack for high-power applications?
A3: The Power Jack supports up to 24V DC and 5A. For higher power requirements, consider using a more robust connector.
Q4: Is the Power Jack waterproof?
A4: No, the Power Jack is not waterproof. Use it in dry environments or enclosures to protect it from moisture.
By following this documentation, you can effectively integrate the SparkFun Power Jack (PRT-00119) into your electronic projects.