The 2.1mm Barrel Jack with Terminal Block is a versatile electrical connector designed for power supply applications. It features a cylindrical barrel jack with a 2.1mm inner diameter and a terminal block for easy and secure wiring. This component is widely used in low-voltage DC power systems, such as powering Arduino boards, LED strips, small motors, and other electronic devices. Its terminal block design eliminates the need for soldering, making it ideal for prototyping and quick connections.
Parameter | Value |
---|---|
Inner Diameter | 2.1mm |
Outer Diameter | 5.5mm |
Voltage Rating | Up to 24V DC |
Current Rating | Up to 5A |
Terminal Block Type | Screw terminal |
Material | Plastic housing with metal pins |
Mounting Style | Free-standing, no soldering needed |
Pin Name | Description |
---|---|
Positive (+) | Connects to the positive terminal of the power source. |
Negative (-) | Connects to the negative terminal (ground) of the power source. |
Barrel Jack Tip | Inner pin of the barrel jack, typically connected to the positive terminal. |
Barrel Jack Sleeve | Outer sleeve of the barrel jack, typically connected to ground. |
The 2.1mm Barrel Jack with Terminal Block can be used to power an Arduino UNO. Below is an example of how to connect it:
If you're powering an Arduino UNO and running a simple LED blink program, you can use the following code:
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the Arduino is powered via the 2.1mm barrel jack.
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
}
Issue | Possible Cause | Solution |
---|---|---|
Device does not power on | Incorrect polarity or loose connection | Verify polarity and tighten terminal screws. |
Overheating of wires or connector | Current exceeds 5A rating | Use a power source within the rated current. |
Barrel jack does not fit | Incorrect size of barrel jack | Ensure the device requires a 2.1mm barrel jack. |
Intermittent power connection | Loose terminal block screws | Tighten the screws securely. |
Can I use this component with an AC power source?
What wire gauge should I use?
Can I use this to power multiple devices?
Is soldering required to use this component?
By following this documentation, you can effectively use the 2.1mm Barrel Jack with Terminal Block in your projects.