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

How to Use DC Board Mount Plug: Examples, Pinouts, and Specs

Image of DC Board Mount Plug
Cirkit Designer LogoDesign with DC Board Mount Plug in Cirkit Designer

Introduction

The DC Board Mount Plug is a connector designed for direct mounting on a circuit board. It is commonly used to establish a secure and reliable electrical connection for DC power supply in electronic devices. This component is widely utilized in applications such as power adapters, embedded systems, and consumer electronics. Its compact design and ease of integration make it a popular choice for powering small to medium-sized electronic circuits.

Explore Projects Built with DC Board Mount Plug

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Dual 5V Power Supply Distribution Circuit with Toggle Switch Control
Image of rfdriver: A project utilizing DC Board Mount Plug 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
Toggle Switch Controlled Lamp Circuit with Banana Sockets
Image of STAIRCASE: A project utilizing DC Board Mount Plug in a practical application
This circuit consists of two toggle switches and a red lamp connected to panel mount banana sockets. The switches control the connection between the red and black banana sockets, allowing the lamp to be turned on or off depending on the switch positions.
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 Board Mount Plug 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-Stage Voltage Regulation and Indicator LED Circuit
Image of Subramanyak_Power_Circuit: A project utilizing DC Board Mount Plug in a practical application
This circuit is designed for power management, featuring buck and boost converters for voltage adjustment, and linear regulators for stable voltage output. It includes LEDs for status indication, and terminal blocks for external connections.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with DC Board Mount Plug

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 rfdriver: A project utilizing DC Board Mount Plug 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 STAIRCASE: A project utilizing DC Board Mount Plug in a practical application
Toggle Switch Controlled Lamp Circuit with Banana Sockets
This circuit consists of two toggle switches and a red lamp connected to panel mount banana sockets. The switches control the connection between the red and black banana sockets, allowing the lamp to be turned on or off depending on the switch positions.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Copy of Hand Crank mobile charger : A project utilizing DC Board Mount Plug 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 Subramanyak_Power_Circuit: A project utilizing DC Board Mount Plug in a practical application
Multi-Stage Voltage Regulation and Indicator LED Circuit
This circuit is designed for power management, featuring buck and boost converters for voltage adjustment, and linear regulators for stable voltage output. It includes LEDs for status indication, and terminal blocks for external connections.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications:

  • Power supply connections for embedded systems
  • Consumer electronics (e.g., routers, set-top boxes)
  • Prototyping and development boards
  • Industrial control systems
  • Battery-powered devices

Technical Specifications

Below are the key technical details of the DC Board Mount Plug:

Parameter Value
Voltage Rating 12V to 24V (typical)
Current Rating 1A to 5A (depending on model)
Connector Type Barrel jack (center-positive)
Mounting Style PCB through-hole
Outer Barrel Diameter 5.5mm (common standard)
Inner Pin Diameter 2.1mm or 2.5mm (varies by model)
Material Metal contacts with plastic body
Operating Temperature -20°C to +70°C

Pin Configuration and Descriptions

The DC Board Mount Plug typically has two pins for electrical connections:

Pin Description
Pin 1 Positive terminal (center pin)
Pin 2 Negative terminal (outer barrel)

Usage Instructions

How to Use the DC Board Mount Plug in a Circuit

  1. Mounting the Plug:

    • Insert the pins of the DC Board Mount Plug into the designated through-hole pads on the PCB.
    • Ensure the orientation matches the circuit design (center pin for positive, outer barrel for negative).
    • Solder the pins securely to the PCB to establish a reliable connection.
  2. Connecting the Power Supply:

    • Use a compatible DC power adapter with a matching barrel size (e.g., 5.5mm outer diameter, 2.1mm inner diameter).
    • Verify the polarity of the power adapter (center-positive is standard).
  3. Testing the Connection:

    • After soldering, use a multimeter to confirm continuity and proper polarity.
    • Ensure there are no short circuits between the positive and negative terminals.

Important Considerations and Best Practices

  • Polarity Check: Always verify the polarity of the power supply before connecting it to the plug. Reversed polarity can damage sensitive components.
  • Current Rating: Ensure the current drawn by the circuit does not exceed the plug's rated current capacity.
  • Soldering: Use proper soldering techniques to avoid cold joints, which can lead to unreliable connections.
  • Strain Relief: If the plug is subject to frequent plugging and unplugging, consider adding strain relief to prevent mechanical stress on the solder joints.

Example: Connecting to an Arduino UNO

The DC Board Mount Plug can be used to power an Arduino UNO. Below is an example of how to connect it:

  1. Solder the plug to a PCB with the correct polarity.
  2. Connect the PCB to the Arduino UNO's power input (barrel jack).
  3. Use a 9V or 12V DC adapter with a center-positive configuration.
// Example Arduino code to blink an LED when powered via the DC plug
// Ensure the DC adapter is connected to the Arduino UNO's barrel jack

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
}

Troubleshooting and FAQs

Common Issues

  1. No Power to the Circuit:

    • Cause: Incorrect polarity or loose connection.
    • Solution: Verify the polarity of the power adapter and ensure the plug is securely soldered.
  2. Overheating of the Plug:

    • Cause: Exceeding the current rating of the plug.
    • Solution: Use a plug with a higher current rating or reduce the circuit's current draw.
  3. Intermittent Power Loss:

    • Cause: Poor solder joints or mechanical stress on the plug.
    • Solution: Re-solder the connections and add strain relief if necessary.

FAQs

Q: Can I use the DC Board Mount Plug for AC power?
A: No, the plug is designed specifically for DC power. Using it for AC power can result in damage or unsafe operation.

Q: How do I determine the correct barrel size for my application?
A: Measure the outer diameter and inner pin diameter of your power adapter's plug. Common sizes are 5.5mm (outer) and 2.1mm or 2.5mm (inner).

Q: What happens if I reverse the polarity?
A: Reversed polarity can damage your circuit. Always double-check the polarity of the power supply before connecting it.

Q: Can I use this plug for high-current applications?
A: The plug is typically rated for currents up to 5A. For higher currents, consider using a connector designed for higher power.