

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 robust design ensures durability and consistent performance, making it a popular choice for powering low-voltage devices.








Below are the key technical details of the DC Board Mount Plug:
| Parameter | Specification |
|---|---|
| Voltage Rating | 12V to 24V DC (typical) |
| Current Rating | Up to 5A |
| Connector Type | Barrel jack |
| Mounting Style | Through-hole or surface mount |
| Barrel Dimensions | Inner diameter: 2.1mm, Outer diameter: 5.5mm |
| Material | Metal contacts with plastic housing |
| 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 (V+) |
| Pin 2 | Negative terminal (Ground or V-) |
Note: Ensure proper polarity when connecting the plug to avoid damage to the circuit.
Mounting the Plug:
Connecting Power:
Testing the Connection:
The DC Board Mount Plug can be used to power an Arduino UNO by connecting a 9V or 12V DC adapter. Below is an example of how to connect and test the setup:
// Example code to test power input via DC Board Mount Plug on Arduino UNO
// This code blinks the onboard LED to confirm the board is powered correctly.
void setup() {
pinMode(LED_BUILTIN, OUTPUT); // Set the onboard LED pin as 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
}
Note: Ensure the DC adapter voltage is within the Arduino UNO's input range (7-12V recommended).
No Power to the Circuit:
Overheating of the Plug:
Intermittent Power Loss:
Short Circuit Between Pins:
Q: Can I use the DC Board Mount Plug for AC power?
A: No, the plug is designed specifically for DC power connections. Using it for AC power may result in damage or unsafe operation.
Q: What is the maximum voltage the plug can handle?
A: The plug is typically rated for up to 24V DC. Exceeding this voltage may damage the plug or connected devices.
Q: How do I choose the right barrel size for my application?
A: Check the specifications of your DC power adapter and ensure the barrel dimensions (inner and outer diameters) match the plug.
Q: Can I use this plug for high-power applications?
A: The plug is suitable for low to moderate power applications (up to 5A). For higher power requirements, consider using connectors with higher current ratings.
By following this documentation, you can effectively integrate the DC Board Mount Plug into your projects and ensure reliable performance.