

The Selector 2x5 Positions Stereo, manufactured by Audiophonics, is a rotary switch designed for stereo audio circuits. It allows users to select one of 10 different input or output channels, making it ideal for applications where multiple audio sources or destinations need to be managed. This component is commonly used in audio amplifiers, preamplifiers, and audio distribution systems to provide seamless switching between audio signals.








The Selector 2x5 Positions Stereo is a high-quality rotary switch with the following technical specifications:
| Parameter | Value |
|---|---|
| Number of Positions | 10 (2x5 configuration) |
| Channels Supported | Stereo (Left and Right channels) |
| Switching Type | Rotary |
| Contact Resistance | ≤ 50 mΩ |
| Insulation Resistance | ≥ 100 MΩ |
| Voltage Rating | 125V AC |
| Current Rating | 0.3A |
| Mounting Type | Panel mount |
| Shaft Diameter | 6mm |
| Body Material | Metal and high-quality plastic |
The Selector 2x5 Positions Stereo has a total of 12 pins, as described in the table below:
| Pin Number | Description |
|---|---|
| 1 | Left channel input/output 1 |
| 2 | Left channel input/output 2 |
| 3 | Left channel input/output 3 |
| 4 | Left channel input/output 4 |
| 5 | Left channel input/output 5 |
| 6 | Common pin for the left channel |
| 7 | Right channel input/output 1 |
| 8 | Right channel input/output 2 |
| 9 | Right channel input/output 3 |
| 10 | Right channel input/output 4 |
| 11 | Right channel input/output 5 |
| 12 | Common pin for the right channel |
While the Selector 2x5 Positions Stereo is primarily used in analog audio circuits, it can also be interfaced with an Arduino UNO for digital control or monitoring. Below is an example of how to read the switch position using the Arduino:
// Example code to read the position of the Selector 2x5 Positions Stereo
// using an Arduino UNO. The switch is connected to analog pin A0.
const int selectorPin = A0; // Analog pin connected to the selector's common pin
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int selectorValue = analogRead(selectorPin); // Read the analog value
int position = map(selectorValue, 0, 1023, 1, 10);
// Map the analog value to one of the 10 positions
Serial.print("Selector Position: ");
Serial.println(position); // Print the current position to the Serial Monitor
delay(500); // Wait for 500ms before reading again
}
Note: To use the Selector 2x5 Positions Stereo with an Arduino, you may need to add resistors to create a voltage divider for each position. This ensures that each position corresponds to a unique voltage level that can be read by the Arduino's analog input.
No Signal Output:
Signal Crosstalk Between Channels:
Switch Feels Stiff or Difficult to Rotate:
Audio Distortion or Noise:
Q: Can this selector be used for mono audio circuits?
A: Yes, the Selector 2x5 Positions Stereo can be used for mono audio circuits by wiring only one channel (left or right).
Q: Is the switch compatible with digital signals?
A: While the switch is designed for analog audio signals, it can handle low-frequency digital signals within its voltage and current ratings.
Q: How many cycles can the switch handle before failure?
A: The Selector 2x5 Positions Stereo is rated for thousands of switching cycles, ensuring long-term durability.
Q: Can I use this selector for video signals?
A: No, this selector is not suitable for high-frequency video signals due to its design and contact resistance.