

The DC Barrel Connector 5.5x2.1mm Male is a cylindrical connector designed for DC power supply applications. It features a 5.5mm outer diameter and a 2.1mm inner diameter, making it one of the most commonly used connectors for powering electronic devices. This connector is widely used in consumer electronics, prototyping, and DIY projects to connect power adapters to devices such as routers, LED strips, Arduino boards, and more.








Below are the key technical details of the DC Barrel Connector 5.5x2.1mm Male:
| Parameter | Specification |
|---|---|
| Outer Diameter | 5.5mm |
| Inner Diameter | 2.1mm |
| Voltage Rating | Typically up to 24V DC |
| Current Rating | Typically up to 5A |
| Connector Type | Male (plug) |
| Polarity | Center pin positive (commonly used) |
| Material | Metal (conductive parts) and plastic (insulation) |
| Mounting Style | Solderable or crimpable |
The DC Barrel Connector 5.5x2.1mm Male has two main contact points:
| Pin | Description |
|---|---|
| Center Pin | Positive terminal (commonly used for +V) |
| Outer Sleeve | Negative terminal (commonly used for GND) |
Note: Always verify the polarity of your power supply and device before connecting to avoid damage.
Identify the Polarity:
Soldering the Connector:
Connecting to a Device:
Testing:
The DC Barrel Connector 5.5x2.1mm Male is commonly used to power an Arduino UNO. Below is an example of how to connect it:
If you want to control an LED using the Arduino UNO powered by this connector, here’s a simple code example:
// Simple Arduino code to blink an LED
// Ensure the Arduino is powered using a DC Barrel Connector
const int ledPin = 13; // Built-in LED pin on most Arduino boards
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
}
Loose Connection:
Polarity Reversal:
Overheating:
No Power to Device:
Q: Can I use this connector for AC power?
A: No, the DC Barrel Connector is designed specifically for DC power applications. Using it for AC power may damage the connector or connected devices.
Q: What happens if I reverse the polarity?
A: Reversing the polarity can damage your device. Always verify the polarity of your power supply and device before connecting.
Q: Can this connector handle 12V and 5A?
A: Yes, most DC Barrel Connectors 5.5x2.1mm Male are rated for up to 24V and 5A. However, confirm the specific rating of your connector before use.
Q: How do I clean the connector?
A: Use a soft, dry cloth to clean the connector. Avoid using water or abrasive materials.
By following this documentation, you can effectively use the DC Barrel Connector 5.5x2.1mm Male in your projects and ensure reliable performance.