TSOP1738 38kHz IR Infrared Receiver Sensor Module (Active Low Output)
Decode remote control signals reliably with the TSOP1738 38kHz IR Receiver Sensor. Integrating a PIN photodiode, Automatic Gain Control (AGC), preamplifier, bandpass filter, and demodulator into a single epoxy-shielded DIP package, the TSOP1738 is explicitly tuned to standard 38kHz modulated infrared signals. Designed with high immunity against ambient sunlight, fluorescent light, and electromagnetic noise, it provides an active-low TTL/CMOS-compatible digital output. It is an essential component for TV/AC remote decoding, robotics line/obstacle sensing, and smart home automation projects using Arduino, ESP32, or Raspberry Pi.
₹ 32
₹ 49
| : |
Add FAQ
The TSOP1738 IR Receiver is a standardized infrared receiving component designed for IR remote control and wireless data transmission systems. Operating at a carrier frequency of 38kHz, it is tuned to match the modulation frequency used by standard TV, air conditioner, and set-top box remote controls.
Internally, the TSOP1738 houses a complete optical signal conditioning chain: a high-sensitivity PIN photodiode, an Automatic Gain Control (AGC) amplifier, a bandpass filter centered at 38 kHz, and a PCM demodulator. When a 38kHz IR light burst hits the photodiode, the module strips away the 38kHz carrier frequency and produces a clean, digital demodulated pulse train on its output pin. Because of its integrated optical filter and metal shielding, it is highly resistant to false triggers caused by ambient sunlight, incandescent bulbs, or electrical noise.
Key Features and Benefits
-
Fully Integrated Optical Receiver: Combines photodiode, amplifier, gain control, and demodulator in a single 3-pin package.
-
38kHz Tuning: Tuned to the most widely used remote control carrier frequency (38 kHz).
-
Active LOW Digital Output: Output stays HIGH (≈5V) during idle, and drops LOW (0V) when a valid 38kHz IR signal is detected.
-
Ambient Light Immunity: Built-in bandpass filter suppresses interference from sunlight and indoor fluorescent lighting.
-
Microcontroller Compatibility: Directly interfaces with 3.3V and 5V logic levels (TTL/CMOS compatible).
Technical Specifications
| Feature Component | Specification Details |
|---|---|
| Model Designation | TSOP1738 |
| Carrier Center Frequency | 38.0 kHz |
| Operating Supply Voltage (VS) | 2.7V DC−5.5V DC (Nominal 5.0V) |
| Supply Current | 0.4 mA−1.5 mA (Low Power Standby) |
| Output Type | Active-LOW Digital Output |
| Reception Distance | Up to 5m−10m (Depending on IR transmitter power) |
| Detection Angle / Viewing Angle | ±45∘ (Overall 90∘ detection cone) |
| Max Data Rate | Up to 2400 bps |
| Operating Temperature | −25∘C to +85∘C |
Pinout & Wiring Guide
Looking at the curved front dome of the TSOP1738 with pins pointing downward:
-
Pin 1 (GND / Left Pin): System Ground (0V).
-
Pin 2 (VS / Middle Pin): Supply Voltage Positive (+5.0V DC).
-
Pin 3 (OUT / Right Pin): Demodulated Active-LOW Signal Output (Connect to Arduino Digital Pin
2).
STABILITY TIP: To prevent power supply ripple noise from affecting reception, place a 100 Ω resistor in series with Pin 2 (VS) and a 4.7 μF decoupling capacitor between Pin 2 (VS) and Pin 1 (GND) close to the sensor.
Arduino Quick-Start Code Example (Decoding IR Remote)
Use the popular IRremote library to decode button presses from any standard TV/AC remote control:
#include <IRremote.hpp>
const int IR_RECEIVER_PIN = 2; // Connect TSOP1738 OUT (Pin 3) to Digital Pin 2
void setup() {
Serial.begin(115200);
// Start the IR receiver
IrReceiver.begin(IR_RECEIVER_PIN, ENABLE_LED_FEEDBACK);
Serial.println("TSOP1738 38kHz IR Receiver Ready. Press any remote button...");
}
void loop() {
if (IrReceiver.decode()) {
// Print the received command protocol and hex code
Serial.print("Protocol: ");
Serial.print(getProtocolString(IrReceiver.decodedIRData.protocol));
Serial.print(" | Hex Code: 0x");
Serial.println(IrReceiver.decodedIRData.decodedRawData, HEX);
IrReceiver.resume(); // Receive the next value
}
}
Applications
-
IR Remote Control Systems: Custom remote control decoding for TVs, air conditioners, and media players.
-
Home Automation: Controlling relays, room lights, and appliances wirelessly using ordinary IR remotes.
-
Robotics: Obstacle detection and line-following robots using modulated 38kHz IR beacons.
-
Object / Security Counters: Non-contact optical beam-break tripwires for entry counters and security systems.
Package Includes
-
1 x TSOP1738 38kHz IR Infrared Receiver Sensor
Shipping & Delivery
-
Free shipping on orders above ₹999 across India
-
Dispatched within 1-3 business days
-
Expected delivery: 3-7 business days depending on location
-
Secure packaging to ensure safe transit of electronic components
0 Reviews For this Product