

A selector switch, manufactured by SA (Part ID: SA), is an electromechanical device designed to allow users to select between multiple circuit paths or functions. It typically features multiple positions, enabling control over various operations in a circuit. Selector switches are widely used in industrial control panels, machinery, and consumer electronics for their reliability and ease of use.








The pin configuration of a selector switch depends on the number of positions and poles. Below is an example for a 3-position, Single Pole Double Throw (SPDT) selector switch:
| Pin Number | Description |
|---|---|
| 1 | Common terminal (COM) |
| 2 | Output terminal for Position 1 |
| 3 | Output terminal for Position 2 |
For a more complex selector switch (e.g., 4-pole, 6-position), refer to the manufacturer's datasheet for detailed pinout information.
Below is an example of how to use a 3-position selector switch with an Arduino UNO to read its position:
// Define the pins connected to the selector switch
const int position1Pin = 2; // Pin connected to Position 1 terminal
const int position2Pin = 3; // Pin connected to Position 2 terminal
const int commonPin = 4; // Pin connected to Common terminal
void setup() {
// Set the selector switch pins as inputs
pinMode(position1Pin, INPUT);
pinMode(position2Pin, INPUT);
pinMode(commonPin, INPUT_PULLUP); // Use internal pull-up resistor
Serial.begin(9600); // Initialize serial communication
}
void loop() {
// Read the state of the selector switch
bool position1State = digitalRead(position1Pin);
bool position2State = digitalRead(position2Pin);
// Determine the switch position and print it
if (position1State == LOW) {
Serial.println("Selector Switch is in Position 1");
} else if (position2State == LOW) {
Serial.println("Selector Switch is in Position 2");
} else {
Serial.println("Selector Switch is in Neutral/Off Position");
}
delay(500); // Add a small delay for stability
}
Switch Not Functioning Properly:
Intermittent Operation:
Incorrect Position Detection in Digital Circuits:
Overheating:
Q: Can the selector switch handle both AC and DC currents?
A: Yes, most selector switches are designed to handle both AC and DC currents, but always check the voltage and current ratings for your specific model.
Q: How do I know which position the switch is in?
A: The position can be determined by the physical marking on the switch or by measuring the continuity between the common terminal and the output terminals.
Q: Can I use a selector switch for high-frequency signals?
A: Selector switches are generally not suitable for high-frequency signals due to potential signal degradation. Use a specialized RF switch for such applications.
Q: Is the selector switch waterproof?
A: Standard selector switches are not waterproof. If you need a waterproof switch, look for models with an IP65 or higher rating.