RPM7236-R
AI

## Technical Overview: RPM7236-R
The **RPM7236-R** is a high-performance infrared (IR) remote control receiver module developed by ROHM Semiconductor. It integrates a PIN photodiode and a preamplifier IC into a single, compact molded package.
---
### 1. Key Internal Components
The device is not just a sensor; it is an integrated system consisting of several electronic stages:
| Component | Function |
| :--- | :--- |
| **PIN Photodiode** | Converts infrared light (950nm) into an electrical current. |
| **Preamplifier** | Amplifies the weak current signals from the photodiode. |
| **Limiter** | Keeps the signal at a constant level regardless of distance. |
| **Band Pass Filter (BPF)** | Specifically tuned to **36.0 kHz** to reject noise from other light sources. |
| **Demodulator** | Extracts the digital data from the carrier wave. |
---
### 2. Technical Specifications
Below are the primary electrical characteristics for the RPM7236-R:
| Parameter | Specification |
| :--- | :--- |
| **Carrier Frequency** | 36.0 kHz |
| **Supply Voltage (Vcc)** | 2.7V to 3.6V (Low voltage operation) |
| **Current Consumption** | ~0.3mA to 0.5mA (Ultra-low power) |
| **Peak Wavelength** | 950 nm |
| **Output Type** | Active Low (Digital) |
| **Maximum Reach** | Up to 15 meters (depending on emitter) |
---
### 3. Pin Configuration
The device typically features three pins, which are essential for its operation:
1. **Vout (Output):** The demodulated signal output. Connects to the microcontroller's GPIO.
2. **GND (Ground):** The reference point for the circuit.
3. **Vcc (Power):** The positive supply voltage (typically 3V).
---
### 4. Application Circuit Example
To ensure stable operation, a simple RC filter is often recommended on the Vcc line to reduce power supply noise.
```cpp
// Example: Arduino pseudocode to read RPM7236-R
int irPin = 2; // Connected to Vout
void setup() {
pinMode(irPin, INPUT);
Serial.begin(9600);
}
void loop() {
int signal = digitalRead(irPin);
if (signal == LOW) {
// IR signal detected (36kHz pulse train)
Serial.println("Signal Detected");
}
}
```
---
### 5. Distinctive Features
* **High Noise Immunity:** The internal Band Pass Filter is highly effective against sunlight and fluorescent light interference.
* **Low Voltage Design:** Specifically designed for battery-operated portable devices (3V logic).
* **Side-view Package:** The "R" in the part number often denotes the physical orientation/shaping of the lens for side-view reception.
- ⤷What is the difference between the 36kHz and 38kHz versions of this module?
- ⤷ How do I calculate the resistor and capacitor values for the Vcc noise filter?
- ⤷ Is the RPM7236-R compatible with 5V microcontrollers like the Arduino Uno?