EM14R1A-R25-R032S
AI

The **EM14R1A-R25-R032S** is a high-quality optical encoder manufactured by **Bourns**. It is designed for human-machine interface (HMI) applications where precision, long life, and a "rotary switch" feel are required.
---
### ## Technical Specifications Breakdown
The part number identifies specific mechanical and electrical characteristics:
| Feature | Specification |
| :--- | :--- |
| **Encoder Type** | Optical (Non-contacting) |
| **Output Type** | 2-bit Quadrature (Digital) |
| **Resolution** | 32 Pulses per Revolution (PPR) |
| **Input Voltage** | 5.0 VDC |
| **Rotational Life** | Up to 1,000,000 cycles |
| **Mounting Type** | Through-hole (PC Pin) |
| **Detent Option** | Yes (R25 indicates detent torque/feel) |
| **Switch** | Push-button momentary switch included |
---
### ### Key Electronic Components & Operation
#### 1. Optical Sensing Mechanism
Unlike mechanical encoders that use physical metal wipers (which wear out over time), the EM14 uses an **Infrared (IR) LED** and a **Photodetector**.
* A slotted disk rotates between the light source and the sensor.
* This eliminates contact "bounce" and provides a significantly longer lifespan.
#### 2. Quadrature Output (Phase A and B)
The device outputs two square wave signals. By comparing the phase shift between **Channel A** and **Channel B**, the microcontroller can determine:
* **Direction:** Clockwise or Counter-clockwise.
* **Velocity:** How fast the knob is being turned.
* **Position:** The relative increment of the turn.
#### 3. Integrated Push Switch
The "S" at the end of the part number denotes a **Momentary Push Switch**.
* **Circuitry:** Usually configured as Single Pole Single Throw (SPST).
* **Function:** Allows the user to "Select" or "Enter" a value by pressing the encoder shaft downward.
---
### ### Typical Connection Diagram
To interface this with a microcontroller (like an Arduino or ESP32), you generally follow this pinout logic:
```cpp
// Pin Configuration Example
VCC -> 5V DC
GND -> Common Ground
Ch A -> Digital Pin (Interrupt recommended)
Ch B -> Digital Pin
SW -> Digital Pin (with Internal Pull-up)
```
---
### ### Advantages of the EM14 Series
* **No Debouncing Required:** Optical signals are much cleaner than mechanical ones, reducing the need for complex RC filters or software delays.
* **Precision "Feel":** The R25 detent provides tactile feedback (clicks) which is ideal for menu navigation.
* **Compact Form Factor:** The 14mm package size makes it suitable for dense control panels in medical, audio, or industrial equipment.
- ⤷
How do I calculate the RPM based on the 32 PPR output?
- ⤷ What is the specific current draw for the IR LED in this encoder?
- ⤷ Can this encoder operate at 3.3V instead of 5V?