TSOP121..
AI

The **TSOP121** series belongs to a family of miniaturized receivers for infrared (IR) remote control systems. It integrates a PIN diode and a preamplifier on a single lead frame, encapsulated in an epoxy package that acts as an IR filter.
---
## 1. Key Technical Specifications
The TSOP121 is designed to detect IR signals modulated at a specific carrier frequency.
| Parameter | Typical Value |
| :--- | :--- |
| **Supply Voltage ($V_S$)** | 2.7V to 5.5V |
| **Supply Current ($I_S$)** | 0.85 mA to 1.1 mA |
| **Carrier Frequency ($f_o$)** | 30 kHz to 56 kHz (Variant dependent) |
| **Transmission Distance** | Up to 45 meters |
| **Directivity** | $\pm$ 45 degrees |
| **Output Type** | Active Low (CMOS/TTL compatible) |
---
## 2. Internal Components & Block Diagram
The device is more than just a sensor; it is an Integrated Circuit (IC). Internally, it consists of several functional blocks:
1. **PIN Diode:** Converts IR light into an electrical current.
2. **Preamplifier:** Amplifies the weak signal from the diode.
3. **Automatic Gain Control (AGC):** Adjusts sensitivity to suppress noise from ambient light (e.g., sunlight or fluorescent bulbs).
4. **Band Pass Filter:** Only allows signals of the specific carrier frequency (e.g., 38kHz) to pass through.
5. **Demodulator & Output Driver:** Removes the carrier wave and outputs the clean data pulses.
---
## 3. Pin Configuration
The TSOP121 usually features a three-pin layout:
| Pin Number | Name | Function |
| :--- | :--- | :--- |
| 1 | **OUT** | Data output; stays HIGH when idle, pulses LOW when IR signal is detected. |
| 2 | **GND** | Ground connection. |
| 3 | **$V_S$** | Positive supply voltage. |
---
## 4. Application Circuit
To ensure stability and reduce noise, a basic RC filter is recommended for the power supply pin.
```c
V_S (5V)
|
[ R1: 100Ω ]
|
+-------+------- (Pin 3: Vs)
| |
[ C1: [TSOP]
4.7uF] |------- (Pin 1: OUT) --> To Microcontroller
| |
GND GND (Pin 2)
```
### Important Usage Notes:
* **Carrier Frequency:** You must match the TSOP frequency (e.g., TSOP12138 for 38kHz) with the frequency of your IR transmitter.
* **Data Format:** This sensor is designed for "burst" signals. Continuous IR signals will be suppressed by the internal AGC to prevent interference.
- ⤷What is the difference between TSOP121 and TSOP1738?
- ⤷ How do I interface the TSOP121 with an Arduino?
- ⤷ What causes the TSOP121 to output noise in bright environments?