

The SPL 1:2 is a signal splitter designed to divide an input signal into two equal output signals. It is commonly used in audio and video applications to distribute signals to multiple devices without significant loss or degradation in quality. This component ensures that the original signal's integrity is maintained while providing consistent performance across both outputs.








The SPL 1:2 is designed to handle a wide range of signal types while maintaining high fidelity. Below are the key technical details:
| Parameter | Value |
|---|---|
| Input Signal Type | Analog or Digital |
| Output Signal Type | Analog or Digital |
| Frequency Range | 20 Hz – 20 kHz (audio) |
| Impedance (Input/Output) | 75 Ω (video), 600 Ω (audio) |
| Signal Gain | 0 dB (unity gain) |
| Power Supply Voltage | 5V DC or 12V DC (model-specific) |
| Power Consumption | < 1W |
The SPL 1:2 typically has the following pin configuration:
| Pin Number | Label | Description |
|---|---|---|
| 1 | VCC | Positive power supply input (5V or 12V DC) |
| 2 | GND | Ground connection |
| 3 | IN | Signal input (audio or video) |
| 4 | OUT1 | Signal output 1 (equal to input signal) |
| 5 | OUT2 | Signal output 2 (equal to input signal) |
The SPL 1:2 can be used with an Arduino UNO to split an audio signal generated by the Arduino. Below is an example code snippet for generating a simple audio tone:
// Example code for generating a tone using Arduino UNO
// This signal can be split using the SPL 1:2 component
const int audioPin = 9; // Pin connected to the SPL 1:2 IN pin
void setup() {
pinMode(audioPin, OUTPUT); // Set the audio pin as an output
}
void loop() {
// Generate a 1 kHz tone for 500 ms
tone(audioPin, 1000, 500);
delay(1000); // Wait for 1 second before repeating
}
Note: Connect the audioPin (pin 9) of the Arduino to the IN pin of the SPL 1:2. The OUT1 and OUT2 pins can then be connected to two separate audio devices.
No Signal at Outputs:
Signal Degradation or Noise:
Unequal Signal Levels at Outputs:
Overheating:
Q1: Can the SPL 1:2 handle both audio and video signals simultaneously?
A1: No, the SPL 1:2 is designed to handle one signal type at a time. Use separate units for audio and video signals.
Q2: Does the SPL 1:2 amplify the signal?
A2: No, the SPL 1:2 operates at unity gain (0 dB), meaning it does not amplify or attenuate the signal.
Q3: Can I use the SPL 1:2 with a battery-powered setup?
A3: Yes, as long as the battery provides the required voltage (5V or 12V DC) and sufficient current.
Q4: Is the SPL 1:2 compatible with HDMI signals?
A4: No, the SPL 1:2 is not designed for HDMI signals. Use an HDMI splitter for such applications.