

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.








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 |
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) |
Mounting the Plug:
Connecting the Power Supply:
Testing the Connection:
The DC Board Mount Plug can be used to power an Arduino UNO. Below is an example of how to connect it:
// 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
}
No Power to the Circuit:
Overheating of the Plug:
Intermittent Power Loss:
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.