

The Connector 1 In 1 Out is a simple yet versatile electronic component designed to facilitate the connection between different circuit elements. It features one input terminal and one output terminal, making it ideal for routing signals or power between two points in a circuit. This component is commonly used in prototyping, modular systems, and general-purpose electronic projects where a reliable and straightforward connection is required.








The Connector 1 In 1 Out is designed to handle a wide range of applications. Below are its key technical details:
| Parameter | Value |
|---|---|
| Voltage Rating | 0–30V DC |
| Current Rating | Up to 5A |
| Contact Resistance | ≤ 20 mΩ |
| Insulation Resistance | ≥ 1000 MΩ |
| Operating Temperature | -40°C to +85°C |
| Connector Type | Screw terminal or push-fit |
| Material | Copper alloy with nickel plating |
The Connector 1 In 1 Out has two terminals, as described below:
| Pin | Label | Description |
|---|---|---|
| 1 | IN | Input terminal for connecting the source signal/power |
| 2 | OUT | Output terminal for connecting to the load/device |
The Connector 1 In 1 Out can be used to supply power to an Arduino UNO. Below is an example of how to connect a 9V DC power supply to the Arduino using this connector:
// Example Arduino code to blink an LED when powered via the Connector 1 In 1 Out
// Ensure the connector is securely connected to the Arduino's VIN and GND pins.
int ledPin = 13; // Built-in LED pin on Arduino UNO
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
By following these guidelines, the Connector 1 In 1 Out can provide a reliable and efficient solution for your circuit connection needs.