

The Connector 2 In 6 Out is a versatile signal distribution component designed to route two input signals to six output channels. This component is widely used in audio systems, data communication networks, and other applications requiring efficient signal splitting and distribution. Its compact design and reliable performance make it an essential tool for managing multiple output connections from a single or dual input source.








The Connector 2 In 6 Out is designed to handle a variety of signal types, including analog and digital signals. Below are its key technical details:
| Parameter | Value | 
|---|---|
| Input Channels | 2 | 
| Output Channels | 6 | 
| Signal Type | Analog or Digital | 
| Maximum Voltage Rating | 30V DC | 
| Maximum Current Rating | 1A per channel | 
| Operating Temperature | -20°C to 70°C | 
| Connector Type | Screw Terminal or Pin Header | 
| Dimensions | 50mm x 30mm x 15mm | 
The Connector 2 In 6 Out typically features screw terminals or pin headers for easy wiring. Below is the pin configuration:
| Pin Number | Label | Description | 
|---|---|---|
| 1 | IN1 | Input signal 1 | 
| 2 | IN2 | Input signal 2 | 
| 3 | OUT1 | Output channel 1 (connected to IN1) | 
| 4 | OUT2 | Output channel 2 (connected to IN1) | 
| 5 | OUT3 | Output channel 3 (connected to IN1) | 
| 6 | OUT4 | Output channel 4 (connected to IN2) | 
| 7 | OUT5 | Output channel 5 (connected to IN2) | 
| 8 | OUT6 | Output channel 6 (connected to IN2) | 
IN1 and IN2 terminals. Ensure the input voltage and current do not exceed the specified ratings.OUT1 through OUT6 terminals. Outputs OUT1, OUT2, and OUT3 will carry the signal from IN1, while OUT4, OUT5, and OUT6 will carry the signal from IN2.The Connector 2 In 6 Out can be used to distribute signals from an Arduino UNO to multiple devices. Below is an example of distributing a PWM signal:
IN1 on the connector.OUT1, OUT2, and OUT3 to the input pins of three LEDs (with appropriate resistors).IN2 and its corresponding outputs unused, or connect another signal to IN2.// Example code to generate a PWM signal on Pin 9
// This signal will be distributed to OUT1, OUT2, and OUT3
void setup() {
  pinMode(9, OUTPUT); // Set Pin 9 as an output
}
void loop() {
  analogWrite(9, 128); // Generate a 50% duty cycle PWM signal
  delay(1000);         // Wait for 1 second
  analogWrite(9, 255); // Generate a 100% duty cycle PWM signal
  delay(1000);         // Wait for 1 second
}
No Signal at Outputs:
Signal Distortion:
Overheating:
Uneven Signal Distribution:
Q: Can this connector handle AC signals?
A: Yes, the connector can handle low-frequency AC signals, provided the voltage and current ratings are not exceeded.
Q: Can I use only one input channel?
A: Yes, you can use either IN1 or IN2 independently. The unused input will not affect the operation.
Q: Is this component suitable for high-frequency signals?
A: The connector can handle high-frequency signals, but using shielded cables is recommended to maintain signal integrity.
Q: Can I connect multiple inputs to a single output?
A: No, this component is designed for one-way signal distribution. Connecting multiple inputs to a single output may cause signal interference or damage.