

A screw terminal with two pins is a simple yet versatile component used for creating secure and reliable electrical connections. It allows wires to be easily attached or detached by tightening or loosening screws, making it ideal for applications where frequent reconfiguration or maintenance is required. This component is commonly used in prototyping, industrial control systems, power distribution, and DIY electronics projects.








The screw terminal has two pins that connect to a PCB or other circuit. Below is the pin configuration:
| Pin Number | Description |
|---|---|
| 1 | Terminal for wire connection 1 |
| 2 | Terminal for wire connection 2 |
Prepare the Wires:
Insert the Wires:
Secure the Connection:
Connect to the Circuit:
While screw terminals are not directly connected to an Arduino UNO, they can be used to interface external components like motors or sensors. Below is an example of using a screw terminal to connect a DC motor to an Arduino UNO via a motor driver.
// Example: Controlling a DC motor using an Arduino UNO and a motor driver
// The screw terminal is used to connect the motor to the motor driver.
// Define motor control pins
const int motorPin1 = 9; // Motor driver input 1
const int motorPin2 = 10; // Motor driver input 2
void setup() {
// Set motor control pins as outputs
pinMode(motorPin1, OUTPUT);
pinMode(motorPin2, OUTPUT);
}
void loop() {
// Rotate motor in one direction
digitalWrite(motorPin1, HIGH); // Set input 1 to HIGH
digitalWrite(motorPin2, LOW); // Set input 2 to LOW
delay(2000); // Run motor for 2 seconds
// Rotate motor in the opposite direction
digitalWrite(motorPin1, LOW); // Set input 1 to LOW
digitalWrite(motorPin2, HIGH); // Set input 2 to HIGH
delay(2000); // Run motor for 2 seconds
}
Loose Connections:
Overtightened Screws:
Corrosion or Oxidation:
Wire Slippage:
Q: Can I use a screw terminal for high-current applications?
A: Yes, but ensure the terminal's current rating matches or exceeds the current in your circuit.
Q: How do I prevent wires from fraying when using a screw terminal?
A: Use ferrules or tin the wire ends with solder before inserting them into the terminal.
Q: Can I reuse a screw terminal after desoldering it from a PCB?
A: Yes, as long as the terminal is not damaged and the screws function properly.
Q: Are screw terminals suitable for outdoor use?
A: Standard screw terminals are not weatherproof. Use terminals with appropriate environmental ratings for outdoor applications.