

The Terminal Strip 2x6 is a versatile and reliable component designed for organizing and connecting multiple wires in a circuit. It features 2 rows and 6 columns of connection points, providing a total of 12 terminals for efficient wire management. This component is commonly used in electrical and electronic projects to simplify wiring, ensure secure connections, and facilitate troubleshooting.








The following table outlines the key technical details of the Terminal Strip 2x6:
| Specification | Details |
|---|---|
| Number of Terminals | 12 (2 rows x 6 columns) |
| Rated Voltage | Up to 300V AC/DC |
| Rated Current | Up to 15A |
| Material | Insulating base: Polycarbonate (PC) |
| Terminal contacts: Nickel-plated brass | |
| Wire Size Compatibility | 22 AWG to 12 AWG |
| Mounting Type | Screw-mount or adhesive backing |
| Operating Temperature | -40°C to 105°C |
| Dimensions | 60mm x 20mm x 15mm (L x W x H) |
The Terminal Strip 2x6 does not have traditional "pins" like an IC but instead features screw terminals for wire connections. Each terminal is paired with a corresponding terminal in the opposite row, allowing for easy bridging or distribution of signals and power.
| Terminal Pair | Description |
|---|---|
| 1A, 1B | First pair of terminals for wire connections |
| 2A, 2B | Second pair of terminals |
| 3A, 3B | Third pair of terminals |
| 4A, 4B | Fourth pair of terminals |
| 5A, 5B | Fifth pair of terminals |
| 6A, 6B | Sixth pair of terminals |
Prepare the wires:
Insert the wires:
Connect additional wires:
Optional bridging:
Mount the terminal strip:
The Terminal Strip 2x6 can be used to organize connections between an Arduino UNO and external components. For example, you can connect multiple sensors and actuators to the Arduino using the terminal strip.
// Example: Connecting an LED and a button to an Arduino UNO using a Terminal Strip 2x6
const int ledPin = 13; // Pin connected to the LED via the terminal strip
const int buttonPin = 7; // Pin connected to the button via the terminal strip
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
pinMode(buttonPin, INPUT_PULLUP); // Set the button pin as an input with pull-up
}
void loop() {
int buttonState = digitalRead(buttonPin); // Read the button state
if (buttonState == LOW) {
// If the button is pressed, turn on the LED
digitalWrite(ledPin, HIGH);
} else {
// If the button is not pressed, turn off the LED
digitalWrite(ledPin, LOW);
}
}
Loose connections:
Short circuits:
Overheating:
Wire slipping out:
Q: Can I use the Terminal Strip 2x6 for AC and DC circuits?
Q: Can I cut the terminal strip to a smaller size?
Q: Is the terminal strip reusable?
Q: Can I use stranded wires with the terminal strip?
This documentation provides all the necessary details to effectively use the Terminal Strip 2x6 in your projects.