DST-SSS-R2
AI

The **DST-SSS-R2** is a high-precision, industrial-grade **Solid State Speed Sensor** (often part of the SSS series) used primarily for monitoring rotational speed or linear motion in harsh environments. Unlike mechanical switches, it relies on Hall Effect or Inductive technology to provide a digital output.
---
### 1. Core Electronic Specifications
The internal circuitry is designed for stability and high noise immunity. Below are the typical electronic characteristics:
| Parameter | Typical Value / Range |
| :--- | :--- |
| **Supply Voltage (Vcc)** | 5V DC to 24V DC (Model dependent) |
| **Output Type** | NPN or PNP (Open Collector) |
| **Switching Frequency** | Up to 15 kHz |
| **Current Consumption** | < 20 mA |
| **Operating Temperature** | -40°C to +85°C |
| **Connection Type** | M12 Connector or Flying Leads |
---
### 2. Key Electronic Components
#### A. Sensing Element (Hall Effect Sensor)
The "R2" revision typically utilizes a **Hall Effect Integrated Circuit (IC)**.
- It detects changes in magnetic flux density as a target (usually a gear tooth or magnet) passes the sensor face.
- It converts this magnetic flux into a voltage pulse.
#### B. Signal Conditioning Circuitry
Inside the DST-SSS-R2 housing, there is a PCB containing:
- **Schmitt Trigger:** This component cleans the raw analog signal from the sensor, ensuring a "square wave" output with sharp transitions, preventing false triggers from vibration.
- **Voltage Regulator:** Protects the internal ICs from fluctuations in the input power supply.
- **Reverse Polarity Protection:** A diode-based circuit that prevents the sensor from burning out if the positive and negative wires are accidentally swapped.
#### C. Output Stage
The sensor usually features an **Open Collector output**.
- This requires a **pull-up resistor** (for NPN) or **pull-down resistor** (for PNP) to interface with a PLC or Microcontroller.
- This design allows the sensor to interface with different logic levels (e.g., 5V TTL or 24V Industrial logic).
---
### 3. Wiring Configuration
Most DST-SSS-R2 models follow the standard industrial color code:
| Wire Color | Function | Description |
| :--- | :--- | :--- |
| **Brown** | +Vcc | Positive Power Supply |
| **Blue** | GND | Common / Ground |
| **Black** | Signal | Square wave output pulse |
---
### 4. Typical Application Circuit
When connecting the DST-SSS-R2 to a digital counter or PLC, the following logic is applied:
```python
# Pseudo-logic for Speed Calculation from Sensor Pulses
Pulses_Per_Revolution = 60 # e.g., a 60-tooth gear
Frequency = Measured_Hz # Frequency from DST-SSS-R2
RPM = (Frequency * 60) / Pulses_Per_Revolution
```
- ⤷
What is the maximum sensing distance for the DST-SSS-R2?
- ⤷ How do I determine if my specific model is NPN or PNP?
- ⤷ Does this sensor require a specific target material like ferrous steel?