

The SWITCH-SPST-2 is a Single Pole Single Throw (SPST) switch designed to control a single circuit. It operates as a simple on/off mechanism, allowing the circuit to be either open (off) or closed (on). This switch is widely used in electronic devices for straightforward on/off control, such as power switches, user input controls, and circuit isolation.








The SWITCH-SPST-2 is a mechanical switch with the following key specifications:
| Parameter | Value |
|---|---|
| Switch Type | Single Pole Single Throw (SPST) |
| Operating Voltage | 0V to 250V AC/DC |
| Maximum Current | 5A |
| Contact Resistance | ≤ 50 mΩ |
| Insulation Resistance | ≥ 100 MΩ |
| Mechanical Life | 10,000 cycles |
| Mounting Type | Through-hole or panel mount |
| Dimensions | 12mm x 6mm x 6mm |
The SWITCH-SPST-2 typically has two terminals (pins) for connection:
| Pin | Description |
|---|---|
| Pin 1 | Input terminal for the circuit |
| Pin 2 | Output terminal for the circuit |
When the switch is in the "on" position, Pin 1 and Pin 2 are electrically connected, allowing current to flow. In the "off" position, the connection is broken, and no current flows.
The SWITCH-SPST-2 can be used as a digital input for an Arduino UNO. Below is an example circuit and code:
// Define the pin connected to the switch
const int switchPin = 2;
// Variable to store the switch state
int switchState = 0;
void setup() {
// Set the switch pin as input with an internal pull-up resistor
pinMode(switchPin, INPUT_PULLUP);
// Initialize serial communication for debugging
Serial.begin(9600);
}
void loop() {
// Read the state of the switch
switchState = digitalRead(switchPin);
// Print the switch state to the Serial Monitor
if (switchState == LOW) {
// Switch is pressed (closed)
Serial.println("Switch is ON");
} else {
// Switch is not pressed (open)
Serial.println("Switch is OFF");
}
// Add a small delay to avoid spamming the Serial Monitor
delay(200);
}
Switch Not Working
Intermittent Operation
No Response in Arduino Circuit
Switch Generates Noise in Digital Circuits
Q: Can the SWITCH-SPST-2 handle AC and DC currents?
A: Yes, the switch is designed to handle both AC and DC currents, up to a maximum of 250V and 5A.
Q: How do I know if the switch is in the "on" position?
A: When the switch is in the "on" position, the circuit is closed, and current flows between Pin 1 and Pin 2. You can verify this with a multimeter or by observing the circuit's operation.
Q: Can I use the SWITCH-SPST-2 for high-frequency signals?
A: The switch is primarily designed for low-frequency or DC applications. For high-frequency signals, consider using a switch specifically designed for RF or high-speed applications.
Q: What is the lifespan of the SWITCH-SPST-2?
A: The switch has a mechanical life of approximately 10,000 cycles under normal operating conditions.