

The Taiway 100-SP-X-T1 is a compact single-pole double-throw (SPDT) toggle switch designed for controlling circuits. This versatile switch allows users to toggle between two different outputs, making it ideal for applications requiring simple and reliable switching functionality. Its miniature size makes it suitable for space-constrained designs, while its robust construction ensures durability.








The following table outlines the key technical details of the Taiway 100-SP-X-T1 SPDT Miniature Toggle Switch:
| Parameter | Specification |
|---|---|
| Switch Type | SPDT (Single Pole Double Throw) |
| Contact Rating | 5A at 120VAC or 2A at 250VAC |
| Contact Resistance | ≤ 20 mΩ |
| Insulation Resistance | ≥ 1000 MΩ at 500VDC |
| Dielectric Strength | 1500VAC for 1 minute |
| Operating Temperature | -20°C to +85°C |
| Mechanical Life | 50,000 cycles |
| Mounting Style | Panel mount |
| Actuator Type | Toggle lever |
| Dimensions | 12.7mm x 6.35mm x 6.35mm (approx.) |
The Taiway 100-SP-X-T1 has three terminals, as described in the table below:
| Pin Number | Label | Description |
|---|---|---|
| 1 | Common | The common terminal connected to the input signal. |
| 2 | Output 1 | Connected to the output when the switch is toggled to position 1. |
| 3 | Output 2 | Connected to the output when the switch is toggled to position 2. |
The Taiway 100-SP-X-T1 can be used with an Arduino UNO to toggle between two LEDs. Below is an example circuit and code:
// Define pin numbers for the switch and LEDs
const int switchPin = 2; // Pin connected to the Common terminal of the switch
const int led1Pin = 3; // Pin connected to LED 1
const int led2Pin = 4; // Pin connected to LED 2
void setup() {
pinMode(switchPin, INPUT_PULLUP); // Configure switch pin as input with pull-up
pinMode(led1Pin, OUTPUT); // Configure LED 1 pin as output
pinMode(led2Pin, OUTPUT); // Configure LED 2 pin as output
}
void loop() {
int switchState = digitalRead(switchPin); // Read the state of the switch
if (switchState == LOW) {
// If the switch is toggled to position 1, turn on LED 1 and turn off LED 2
digitalWrite(led1Pin, HIGH);
digitalWrite(led2Pin, LOW);
} else {
// If the switch is toggled to position 2, turn on LED 2 and turn off LED 1
digitalWrite(led1Pin, LOW);
digitalWrite(led2Pin, HIGH);
}
}
Switch Not Functioning Properly:
LEDs Not Lighting Up in Arduino Circuit:
Mechanical Failure:
This concludes the documentation for the Taiway 100-SP-X-T1 SPDT Miniature Toggle Switch.