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

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

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

Introduction

A DC power jack is a connector used to supply direct current (DC) power to electronic devices. It typically features a cylindrical shape and is designed to accept a matching DC power plug, allowing for easy connection and disconnection of power. DC power jacks are commonly found in consumer electronics, such as laptops, routers, and small appliances, where they serve as the primary interface for external power supplies.

Explore Projects Built with DC 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 USB Charger with LED Indicator and DC Motor
Image of Copy of Hand Crank mobile charger : A project utilizing DC Power Jack in a practical application
This circuit converts AC power to DC using a bridge rectifier and regulates the voltage to 5V with a 7805 voltage regulator. It powers a USB port and indicates power status with an LED, while also providing a charging interface through a multi-charging cable.
Cirkit Designer LogoOpen Project in Cirkit Designer
Dual 5V Power Supply Distribution Circuit with Toggle Switch Control
Image of rfdriver: A project utilizing DC Power Jack in a practical application
This circuit consists of two 5V 5A power supplies connected to an AC wall plug point, providing DC output through a 12-way connector. The ground connections from both power supplies are interconnected and also connected to the ground pins of two toggle switches. The DC outputs from the power supplies are separately connected to different pins on the 12-way connector, with each power supply output being switchable via one of the toggle switches.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Multi-Voltage Supply with Barrel Jack Connectors
Image of Battery Setup: A project utilizing DC 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
Battery-Powered Adjustable Voltage Regulator with Power Jack
Image of batteries : A project utilizing DC 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

Explore Projects Built with DC 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 Copy of Hand Crank mobile charger : A project utilizing DC Power Jack in a practical application
Battery-Powered USB Charger with LED Indicator and DC Motor
This circuit converts AC power to DC using a bridge rectifier and regulates the voltage to 5V with a 7805 voltage regulator. It powers a USB port and indicates power status with an LED, while also providing a charging interface through a multi-charging cable.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of rfdriver: A project utilizing DC Power Jack in a practical application
Dual 5V Power Supply Distribution Circuit with Toggle Switch Control
This circuit consists of two 5V 5A power supplies connected to an AC wall plug point, providing DC output through a 12-way connector. The ground connections from both power supplies are interconnected and also connected to the ground pins of two toggle switches. The DC outputs from the power supplies are separately connected to different pins on the 12-way connector, with each power supply output being switchable via one of the toggle switches.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Battery Setup: A project utilizing DC 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
Image of batteries : A project utilizing DC 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

Common Applications and Use Cases

  • Powering small electronic devices like Arduino boards, Raspberry Pi, and other microcontrollers.
  • Providing a reliable connection for external power adapters in consumer electronics.
  • Used in DIY electronics projects for easy power input integration.
  • Replacing damaged power connectors in devices.

Technical Specifications

Below are the general technical specifications for a standard DC power jack. Note that specific models may vary slightly, so always refer to the datasheet of the exact component you are using.

Key Technical Details

  • Voltage Rating: Typically 12V to 24V (varies by model).
  • Current Rating: Commonly 1A to 5A.
  • Connector Type: Barrel-style connector (e.g., 5.5mm outer diameter, 2.1mm or 2.5mm inner diameter).
  • Polarity: Center pin is usually positive (+), and the outer sleeve is negative (-).
  • Mounting Style: Panel mount or PCB mount.
  • Material: Metal contacts with plastic insulation.

Pin Configuration and Descriptions

The DC power jack typically has three pins:

Pin Name Description
Pin 1 (Center Pin) Connects to the positive terminal of the power supply.
Pin 2 (Outer Sleeve) Connects to the negative terminal of the power supply.
Pin 3 (Switch Pin) Optional pin used to detect the presence of a plug or to disconnect internal power.

Usage Instructions

How to Use the Component in a Circuit

  1. Identify the Pins: Use the pin configuration table above to identify the center pin, outer sleeve, and switch pin (if applicable).
  2. Connect Power Supply: Ensure the power supply matches the voltage and current requirements of your circuit. Verify the polarity of the DC power jack and plug.
  3. Soldering: If using a PCB mount jack, solder the pins to the appropriate pads on the PCB. For panel mount jacks, secure the jack to the panel and connect wires to the pins.
  4. Polarity Check: Double-check the polarity of the connections before powering the circuit to avoid damage.

Important Considerations and Best Practices

  • Polarity Matters: Always confirm the polarity of the power supply and the DC jack to prevent reverse polarity damage.
  • Current Rating: Ensure the jack can handle the maximum current required by your circuit.
  • Secure Mounting: For panel mount jacks, ensure the jack is securely fastened to prevent movement or disconnection.
  • Switch Pin Usage: If your jack has a switch pin, you can use it to automatically disconnect an internal battery when an external power source is connected.

Example: Connecting a DC Power Jack to an Arduino UNO

Below is an example of how to use a DC power jack to power an Arduino UNO. The Arduino UNO has a built-in DC barrel jack that accepts 7-12V DC.

Arduino Code Example

// This example demonstrates powering an Arduino UNO via a DC power jack.
// No specific code is required to use the DC jack, as it directly powers
// the board. However, you can use this code to verify the board is powered
// and functioning correctly by blinking the onboard LED.

void setup() {
  pinMode(LED_BUILTIN, OUTPUT); // Set the onboard LED pin as an output
}

void loop() {
  digitalWrite(LED_BUILTIN, HIGH); // Turn the LED on
  delay(1000);                     // Wait for 1 second
  digitalWrite(LED_BUILTIN, LOW);  // Turn the LED off
  delay(1000);                     // Wait for 1 second
}

Troubleshooting and FAQs

Common Issues Users Might Face

  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 Jack:

    • Cause: Exceeding the current rating of the jack.
    • Solution: Use a jack with a higher current rating or reduce the load on the circuit.
  3. Intermittent Power Loss:

    • Cause: Poor solder joints or loose panel mounting.
    • Solution: Re-solder the connections or tighten the mounting hardware.
  4. Device Not Turning On:

    • Cause: Faulty power supply or damaged jack.
    • Solution: Test the power supply with a multimeter and inspect the jack for physical damage.

Solutions and Tips for Troubleshooting

  • Use a multimeter to check the voltage at the output of the DC power jack.
  • Inspect the jack for signs of wear, corrosion, or damage.
  • If using a switch pin, ensure it is properly connected and functioning as intended.
  • Always use a power supply that matches the voltage and current requirements of your circuit.

By following this documentation, you can effectively integrate and troubleshoot a DC power jack in your electronic projects.