AI

The **TS-236-R** is a specific model of a **Tactile Switch** (push-button switch). These components are widely used in consumer electronics, automotive controls, and industrial interfaces to provide a physical "click" sensation and complete an electrical circuit when pressed.
---
### 1. Technical Specifications
The following table highlights the typical electrical and mechanical properties of the TS-236-R series:
| Property | Value/Specification |
| :--- | :--- |
| **Switch Type** | Momentary Push Button (SPST) |
| **Mounting Type** | Through-Hole (THT) or SMD (depends on sub-series) |
| **Actuation Force** | 160gf to 250gf (Standard) |
| **Contact Rating** | 50mA @ 12V DC |
| **Contact Resistance** | < 100mΩ |
| **Travel Distance** | 0.25mm ± 0.1mm |
| **Dielectric Strength** | 250V AC for 1 minute |
| **Operating Life** | 50,000 to 100,000 cycles |
---
### 2. Physical Design and Dimensions
The "236" designation often refers to the physical footprint of the switch. Common characteristics include:
* **Footprint:** Usually a square base (e.g., 6x6mm).
* **Stem Height:** The "R" or subsequent digits often indicate the height of the plunger (the part you press).
* **Terminal Layout:** Typically features 4 pins. Internally, pins are connected in pairs; pressing the button connects all four pins together.
---
### 3. Circuit Configuration
The TS-236-R is a **Single Pole Single Throw (SPST)** switch. Below is a simplified representation of how it is integrated into a circuit:
```cpp
// Typical Arduino Wiring Logic
// Pin 1 & 2 -> Connected to Digital Input (with Pull-up resistor)
// Pin 3 & 4 -> Connected to Ground (GND)
void setup() {
pinMode(2, INPUT_PULLUP); // Internal pull-up
}
void loop() {
int buttonState = digitalRead(2);
if (buttonState == LOW) {
// Switch is pressed, circuit is closed
}
}
```
---
### 4. Common Applications
* **Computer Peripherals:** Reset buttons, power buttons on monitors.
* **Consumer Electronics:** Remote controls, microwave panels, and digital cameras.
* **Prototyping:** Breadboard-friendly components for DIY electronics (Arduino/Raspberry Pi).
---
- ⤷
What are the specific dimensions and height of the TS-236-R stem?
- ⤷ Is the TS-236-R available in a Surface Mount (SMD) configuration?
- ⤷ How do I debounce a tactile switch like the TS-236-R in code?