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

How to Use DC jack: Examples, Pinouts, and Specs

Image of DC jack
Cirkit Designer LogoDesign with DC jack in Cirkit Designer

Introduction

A DC jack is a type of electrical connector used to supply direct current (DC) power to electronic devices. It typically consists of a cylindrical socket that accepts a matching plug, allowing for easy connection and disconnection of power. DC jacks are widely used in consumer electronics, such as laptops, routers, and small appliances, to provide a reliable and standardized method of delivering power.

Explore Projects Built with DC 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 Multi-Voltage Supply with Barrel Jack Connectors
Image of Battery Setup: A project utilizing DC 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
Dual 5V Power Supply Distribution Circuit with Toggle Switch Control
Image of rfdriver: A project utilizing DC 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 USB Charger with LED Indicator and DC Motor
Image of Copy of Hand Crank mobile charger : A project utilizing DC 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
Multi-Channel Load Cell Measurement System with JYS60 Amplifiers and DAQ Integration
Image of Load Cell Circuit: A project utilizing DC jack in a practical application
This is a multi-channel load cell measurement system with several JYS60 amplifiers connected to load cells for weight or force sensing. The amplified signals are directed to a DAQ system for data capture, and power is supplied through a barrel jack. Grounding is achieved via an AdaGator Side Black component.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with DC 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 Battery Setup: A project utilizing DC 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 rfdriver: A project utilizing DC 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 Copy of Hand Crank mobile charger : A project utilizing DC 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 Load Cell Circuit: A project utilizing DC jack in a practical application
Multi-Channel Load Cell Measurement System with JYS60 Amplifiers and DAQ Integration
This is a multi-channel load cell measurement system with several JYS60 amplifiers connected to load cells for weight or force sensing. The amplified signals are directed to a DAQ system for data capture, and power is supplied through a barrel jack. Grounding is achieved via an AdaGator Side Black component.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Powering laptops, routers, and other portable devices
  • Supplying power to Arduino and other microcontroller-based projects
  • Connecting external power supplies to DIY electronics
  • Replacing damaged power connectors in electronic devices

Technical Specifications

Below are the general technical specifications for a standard DC 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: 1A to 5A (depending on the size and type)
  • Connector Type: Cylindrical socket
  • Outer Diameter (OD): Common sizes include 5.5mm, 3.5mm, or 2.1mm
  • Inner Diameter (ID): Common sizes include 2.1mm or 2.5mm
  • Polarity: Center pin is usually positive (+), and the outer sleeve is negative (-)
  • Mounting Style: Panel mount or PCB mount

Pin Configuration and Descriptions

The DC jack typically has three pins:

Pin Name Description
Positive (+) Connects to the center pin of the DC plug, usually the positive terminal.
Negative (-) Connects to the outer sleeve of the DC plug, usually the negative terminal.
Switch Pin Optional pin that disconnects internal power when an external plug is inserted.

Usage Instructions

How to Use the DC Jack in a Circuit

  1. Identify the Pins: Use a multimeter to confirm the polarity of the pins. The center pin is typically positive (+), and the outer sleeve is negative (-). The switch pin, if present, can be used to toggle between power sources.
  2. Mounting: If using a panel-mount DC jack, secure it to the enclosure using the provided nut. For PCB-mount jacks, solder the pins to the appropriate pads on the PCB.
  3. Connect to Power Source: Ensure the power supply matches the voltage and current requirements of your circuit. For example, if your circuit requires 12V and 1A, use a power adapter with the same specifications.
  4. Wiring: Connect the positive pin of the DC jack to the positive rail of your circuit and the negative pin to the ground rail. If using the switch pin, connect it to the internal power source.

Important Considerations and Best Practices

  • Polarity: Always verify the polarity of the DC jack and the power adapter to avoid damaging your circuit.
  • Voltage and Current Ratings: Ensure the DC jack can handle the voltage and current of your power supply.
  • Secure Connections: Use heat shrink tubing or electrical tape to insulate exposed wires and prevent short circuits.
  • Switch Pin Usage: If your DC jack has a switch pin, use it to automatically disconnect an internal battery when an external power source is connected.

Example: Connecting a DC Jack to an Arduino UNO

Below is an example of how to connect a DC jack to an Arduino UNO using a 12V power adapter.

Circuit Diagram

  1. Connect the positive pin of the DC jack to the VIN pin of the Arduino UNO.
  2. Connect the negative pin of the DC jack to the GND pin of the Arduino UNO.

Sample Code

// Example code to blink an LED connected to pin 13 on the Arduino UNO
// Ensure the Arduino is powered via the DC jack with a 12V adapter

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
}

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 DC jack and ensure all connections are secure.
  2. Overheating

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

    • Cause: Worn-out or damaged DC jack.
    • Solution: Replace the DC jack with a new one.
  4. Short Circuit

    • Cause: Exposed wires or incorrect wiring.
    • Solution: Insulate all connections and double-check the wiring.

FAQs

Q: Can I use a DC jack with a higher voltage rating than my power supply?
A: Yes, as long as the voltage rating of the DC jack exceeds the voltage of your power supply, it is safe to use.

Q: How do I determine the size of the DC jack I need?
A: Measure the outer and inner diameters of your DC plug or refer to the specifications of your power adapter.

Q: Can I use a DC jack without a switch pin?
A: Yes, the switch pin is optional and is only needed if you want to toggle between power sources.

Q: Is it safe to use a DC jack for high-current applications?
A: DC jacks are typically designed for low to moderate current. For high-current applications, consider using connectors rated for higher currents.