

A DC barrel jack female is a connector designed to receive power from a DC power supply. It features a cylindrical shape with a central pin for positive voltage and an outer sleeve for ground. This component is widely used in electronic devices to provide a secure and reliable power connection. Its standardized design ensures compatibility with a variety of DC power adapters.








Below are the key technical details for a standard DC barrel jack female connector:
| Parameter | Value |
|---|---|
| Voltage Rating | Typically 12V to 24V (varies by model) |
| Current Rating | 1A to 5A (depending on the model) |
| Connector Type | Female barrel jack |
| Inner Pin Diameter | Commonly 2.1mm or 2.5mm |
| Outer Sleeve Diameter | Commonly 5.5mm |
| Mounting Style | Panel mount or PCB mount |
| Material | Plastic housing with metal contacts |
The DC barrel jack female typically has three pins for connection:
| Pin | Description |
|---|---|
| Inner Pin | Positive voltage terminal (V+) |
| Outer Sleeve | Ground terminal (GND) |
| Switch Pin | Optional pin used to detect plug insertion or disconnect internal power when a plug is inserted (not present in all models) |
The Arduino UNO features a DC barrel jack female for power input. Below is an example of powering the Arduino UNO using a 12V DC adapter:
// No code is required for the DC barrel jack itself, as it is a passive component.
// However, here is an example of using the Arduino UNO's power input to blink an LED.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 (built-in LED) as an output
}
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
}
No Power to the Circuit:
Overheating of the Barrel Jack:
Intermittent Power Loss:
Plug Does Not Fit:
By following these guidelines, you can effectively use a DC barrel jack female in your electronic projects and ensure reliable power connections.