M2TS-11-R
AI

The **M2TS-11-R** is a specific electronic component, typically categorized as a **Miniature Toggle Switch**. These components are widely used in industrial control panels, consumer electronics, and DIY projects for manual circuit switching.
Below is a detailed breakdown of its electronic specifications and features.
---
### 1. Key Technical Specifications
The M2TS-11-R generally follows industry standards for miniature toggle switches.
| Feature | Specification (Typical) |
| :--- | :--- |
| **Switch Type** | Toggle Switch |
| **Circuitry** | SPDT (Single Pole Double Throw) |
| **Switch Function** | ON - ON (2 Positions) |
| **Contact Rating** | 6A @ 125VAC / 3A @ 250VAC |
| **Mounting Type** | Panel Mount (Threaded Bushing) |
| **Terminal Type** | Solder Lug |
| **Actuator Material** | Chrome Plated Brass |
---
### 2. Internal Circuitry (SPDT)
The "11" in the part number usually signifies a **Single Pole Double Throw** configuration. This means the switch has one input (common) and two potential outputs.
* **Terminal 1:** Output A
* **Terminal 2:** Common (Input)
* **Terminal 3:** Output B
In the "ON-ON" configuration, terminal 2 is always connected to either terminal 1 or terminal 3, depending on the position of the lever. There is no "Off" center position.
---
### 3. Physical & Material Composition
Understanding the materials helps in determining the environment the switch can handle:
* **Housing:** Usually made of Diallyl Phthalate (DAP), a high-strength, flame-retardant plastic.
* **Contacts:** Often silver-plated or gold-plated copper alloy to ensure low contact resistance and prevent oxidation.
* **Bushing:** Standard 1/4-40 UNS threaded bushing for secure panel mounting.
* **Sealing:** The "R" suffix often denotes **RoHS Compliance**, ensuring the part is free from hazardous substances like lead and cadmium.
---
### 4. Typical Application Example
Here is how you would wire this switch in a basic circuit to toggle between two LEDs:
```python
# Simple Circuit Logic
If Toggle_Position == UP:
Circuit_1 = CLOSED (LED A is ON)
Circuit_2 = OPEN (LED B is OFF)
Else: (Toggle_Position == DOWN)
Circuit_1 = OPEN (LED A is OFF)
Circuit_2 = CLOSED (LED B is ON)
```
---
### 5. Installation Notes
1. **Heat Sensitivity:** When soldering the lugs, avoid applying heat for more than 3 seconds to prevent the internal plastic housing from melting.
2. **Panel Hole:** A standard 6.35mm (1/4 inch) hole is required for the bushing.
3. **Torque:** Do not over-tighten the mounting nuts, as it can strip the threads or crack the switch body.
- ⤷
What is the difference between SPDT and DPDT toggle switches?
- ⤷ Can this switch be used for DC applications instead of AC?
- ⤷ What does the 'R' suffix signify specifically for different manufacturers?