The DC barrel jack (5.5x2.1mm male) is a widely used electrical connector designed for supplying power to electronic devices. It features a cylindrical shape with a 5.5mm outer diameter and a 2.1mm inner diameter, making it compatible with a variety of power adapters. This connector is commonly found in consumer electronics, DIY projects, and prototyping applications due to its ease of use and standardization.
The following table outlines the key technical details of the DC barrel jack (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 (common standard) |
Material | Metal (conductive parts) and plastic (insulation) |
The DC barrel jack (male) has two main connection points:
Pin | Description |
---|---|
Center Pin | Positive terminal (commonly +V) |
Outer Sleeve | Negative terminal (commonly ground or -V) |
The DC barrel jack (5.5x2.1mm male) is commonly used to power an Arduino UNO. Below is an example of how to connect it:
If you are powering an Arduino UNO and running a simple LED blink program, here is the code:
// This example code blinks an LED connected to pin 13 on the Arduino UNO.
// Ensure the Arduino is powered via the DC barrel jack (5.5x2.1mm male).
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
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 barrel jack for AC power?
A: No, the DC barrel jack is designed specifically for DC power. Using it with AC power can damage the device and pose safety risks.
Q: What happens if I reverse the polarity?
A: Reversing the polarity can damage the connected device. Always verify the polarity of the power source and device before connecting.
Q: Is this barrel jack waterproof?
A: No, the standard 5.5x2.1mm male barrel jack is not waterproof. Use additional enclosures or waterproof connectors for outdoor applications.
Q: Can I use this jack for high-power applications?
A: The barrel jack is typically rated for up to 5A. For higher power applications, consider using connectors with higher current ratings.