

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, and Arduino boards.








The following table outlines 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) |
| Material | Metal (conductive parts) and plastic |
| Polarity | Center pin: Positive (+), Outer shell: Negative (-) |
The DC Barrel Connector has two main contact points:
| Pin | Description |
|---|---|
| Center Pin | Positive terminal (+), connects to the inner conductor |
| Outer Shell | Negative terminal (-), connects to the outer conductor |
The DC Barrel Connector 5.5x2.1mm Male can be used to power an Arduino UNO via its DC power jack. Below is an example of how to connect and use it:
If you are using the connector in a custom circuit with an Arduino, you can use the following code to test the Arduino's functionality after powering it:
// Simple LED Blink Test for Arduino UNO
// This code blinks the built-in LED on pin 13 to verify power and functionality.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output for the built-in LED
}
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
}
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 can result in damage or unsafe operation.
Q: How do I determine the polarity of my power adapter?
A: Most power adapters have a polarity diagram printed on them. The diagram indicates whether the center pin is positive (+) or negative (-).
Q: Can I use this connector for high-power applications?
A: The connector is typically rated for up to 5A and 24V DC. For higher power applications, consider using connectors with higher current and voltage ratings.
Q: Is this connector compatible with all Arduino boards?
A: The DC Barrel Connector 5.5x2.1mm Male is compatible with most Arduino boards that have a DC power jack, such as the Arduino UNO, Mega, and Nano (with an adapter). Always check the board's specifications to confirm compatibility.