Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use Power Jack: Examples, Pinouts, and Specs

Image of Power Jack
Cirkit Designer LogoDesign with Power Jack in Cirkit Designer

Introduction

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.

Explore Projects Built with Power Jack

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Battery-Powered Adjustable Voltage Regulator with Power Jack
Image of batteries : A project utilizing Power Jack in a practical application
This circuit takes a 7V input from a battery and uses a Step Up Boost Power Converter to increase the voltage to a higher, adjustable level. The boosted voltage is then supplied to a power jack for external use.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered LED Control System with Push Switches and Boost Converter
Image of Power Setup Updated 10/12: A project utilizing Power Jack in a practical application
This circuit consists of multiple LEDs, push switches, and power jacks, designed to control the illumination of the LEDs. Each LED is connected to a power jack through a push switch, allowing individual control of each LED. Additionally, the circuit includes a 7-inch WaveShare display, a boost converter, and fans, all powered through a terminal block.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered LED Control Circuit with Push Switches and Relay
Image of Power Setup: A project utilizing Power Jack in a practical application
This circuit consists of multiple LEDs, push switches, power jacks, a battery pack, a boost converter, and a relay. The push switches control the power to the LEDs, which are powered by the battery pack and various power jacks. The boost converter and relay are used to manage and regulate the power supply to the LEDs.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Multi-Voltage Supply with Barrel Jack Connectors
Image of Battery Setup: A project utilizing Power Jack in a practical application
This circuit consists of multiple 9V batteries connected in series and parallel configurations to provide power to three separate 2.1mm barrel jacks. Each barrel jack receives a different combination of series and parallel battery connections to achieve the desired voltage and current levels.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Power Jack

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of batteries : A project utilizing Power Jack in a practical application
Battery-Powered Adjustable Voltage Regulator with Power Jack
This circuit takes a 7V input from a battery and uses a Step Up Boost Power Converter to increase the voltage to a higher, adjustable level. The boosted voltage is then supplied to a power jack for external use.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Power Setup Updated 10/12: A project utilizing Power Jack in a practical application
Battery-Powered LED Control System with Push Switches and Boost Converter
This circuit consists of multiple LEDs, push switches, and power jacks, designed to control the illumination of the LEDs. Each LED is connected to a power jack through a push switch, allowing individual control of each LED. Additionally, the circuit includes a 7-inch WaveShare display, a boost converter, and fans, all powered through a terminal block.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Power Setup: A project utilizing Power Jack in a practical application
Battery-Powered LED Control Circuit with Push Switches and Relay
This circuit consists of multiple LEDs, push switches, power jacks, a battery pack, a boost converter, and a relay. The push switches control the power to the LEDs, which are powered by the battery pack and various power jacks. The boost converter and relay are used to manage and regulate the power supply to the LEDs.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Battery Setup: A project utilizing Power Jack in a practical application
Battery-Powered Multi-Voltage Supply with Barrel Jack Connectors
This circuit consists of multiple 9V batteries connected in series and parallel configurations to provide power to three separate 2.1mm barrel jacks. Each barrel jack receives a different combination of series and parallel battery connections to achieve the desired voltage and current levels.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Powering microcontroller boards (e.g., Arduino, Raspberry Pi with adapters)
  • Robotics and automation systems
  • Consumer electronics requiring external DC power
  • Prototyping and DIY electronics projects

Technical Specifications

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

Pin Configuration and Descriptions

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.

Usage Instructions

How to Use the Power Jack in a Circuit

  1. Mounting the Power Jack:

    • Solder the through-hole pins of the Power Jack onto a PCB or breadboard. Ensure proper alignment and secure solder joints for reliable connections.
  2. Connecting the Power Source:

    • Use a compatible DC barrel plug (5.5 mm outer diameter, 2.1 mm inner diameter) to connect the external power supply to the Power Jack.
    • Verify that the voltage and current ratings of the power supply match the requirements of your circuit.
  3. Wiring the Pins:

    • Connect the Positive (V+) pin to the positive rail of your circuit.
    • Connect the Negative (V-) pin to the ground rail of your circuit.
    • If using the Switch Pin, connect it to a circuit that should be disconnected when a plug is inserted.
  4. Testing the Circuit:

    • Before powering the circuit, double-check all connections to ensure there are no short circuits or reversed polarities.
    • Power on the external supply and measure the voltage at the output terminals to confirm proper operation.

Important Considerations and Best Practices

  • Polarity: Always ensure the correct polarity of the power supply to avoid damaging the circuit.
  • Voltage and Current Ratings: Do not exceed the maximum voltage (24V DC) or current (2A) ratings of the Power Jack.
  • Heat Dissipation: If operating near the maximum current rating, ensure adequate ventilation to prevent overheating.
  • Switch Pin Usage: The switch pin can be used to automatically disconnect a battery or secondary power source when the external power supply is connected.

Example: Connecting to an Arduino UNO

The Power Jack can be used to power an Arduino UNO board. Below is an example of how to connect and use it:

  1. Solder the Power Jack onto a PCB or connect it to a breadboard.
  2. Connect the Positive (V+) pin to the Arduino's VIN pin.
  3. Connect the Negative (V-) pin to the Arduino's GND pin.
  4. Plug in a 9V DC power adapter with a compatible barrel plug.

Arduino Code Example

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
}

Troubleshooting and FAQs

Common Issues and Solutions

  1. No Power to the Circuit:

    • Cause: Incorrect polarity or loose connections.
    • Solution: Verify the polarity of the power supply and ensure all connections are secure.
  2. Overheating of the Power Jack:

    • Cause: Exceeding the current rating (2A).
    • Solution: Use a power supply within the specified current limits or add a heat sink if necessary.
  3. Intermittent Power Loss:

    • Cause: Poor solder joints or damaged barrel plug.
    • Solution: Re-solder the connections and inspect the barrel plug for wear or damage.
  4. Switch Pin Not Working:

    • Cause: Incorrect wiring or incompatible circuit design.
    • Solution: Verify the wiring of the switch pin and ensure it is connected to the correct part of the circuit.

FAQs

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.