

A screw terminal with two pins is a simple yet effective component used for securely connecting wires in electronic circuits. It features two screws that tighten onto the inserted wires, ensuring a reliable and stable electrical connection. This component is widely used in prototyping, industrial control systems, and DIY electronics projects due to its ease of use and durability.








Below are the key technical details for a standard 2-pin screw terminal:
| Parameter | Value |
|---|---|
| Number of Pins | 2 |
| Rated Voltage | 300V AC/DC |
| Rated Current | 10A |
| Wire Gauge Support | 26 AWG to 12 AWG |
| Pitch (Pin Spacing) | 5.08 mm (standard) |
| Material | Plastic housing (flame-retardant) |
| Contact Material | Copper alloy with tin plating |
| Operating Temperature | -40°C to +105°C |
| Pin Number | Description |
|---|---|
| 1 | Terminal for wire connection (positive) |
| 2 | Terminal for wire connection (negative) |
The screw terminal can be used to connect external devices, such as motors or sensors, to an Arduino UNO. Below is an example of connecting a 12V DC motor to an Arduino using a screw terminal and an external power supply.
// Example code to control a DC motor using Arduino and a screw terminal
// connected to a motor driver (e.g., L298N).
const int motorPin = 9; // PWM pin connected to the motor driver
void setup() {
pinMode(motorPin, OUTPUT); // Set motor pin as output
}
void loop() {
analogWrite(motorPin, 128); // Run motor at 50% speed
delay(2000); // Keep motor running for 2 seconds
analogWrite(motorPin, 0); // Stop the motor
delay(2000); // Wait for 2 seconds before restarting
}
Q: Can I use this screw terminal for AC connections?
A: Yes, the terminal is rated for up to 300V AC, making it suitable for low-voltage AC applications.
Q: Is the terminal reusable?
A: Yes, the terminal can be reused multiple times as long as the screws and housing remain intact.
Q: Can I use stranded wires with this terminal?
A: Yes, stranded wires are compatible. For best results, twist the strands before inserting them into the terminal.
Q: What tools do I need to use this component?
A: A small flathead screwdriver is required to tighten or loosen the screws. Wire strippers may also be needed to prepare the wires.
By following these guidelines, you can effectively use the 2-pin screw terminal in your electronic projects!