Infrared Receiver 3-PIN

SKU: EK489 Category: Tags: ,

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

6,00 EGP

20 People watching this product now!

Payment Methods:

Description

<p>This is IR Receiving Head VS1838B Remote Control Receiver. The 1838B is miniaturized infrared receivers for remote control and other applications requiring improved ambient light rejection. The separate PIN diode and preamplifier IC are assembled on a single lead frame.</p> <p>The epoxy package contains a special IR filter. This module has excellent performance even in disturbed ambient light applications and provides protection against uncontrolled output pulses.</p> <p>Use this IR Receiver Diode – TSOP38238, a simple IR receiver for infrared remote control of your next project. With low power consumption and an easy to use package, it mates well with embedded electronics and can be used with common IR remotes.</p> <p>The TSOP382 is a miniaturized receiver for infrared remote control systems. A PIN diode and a preamplifier are assembled on a lead frame while the epoxy package acts as an IR filter. The demodulated output signal can be directly decoded by a microprocessor. The TSOP382 is compatible with all common IR remote control data formats.</p> <h5><strong>Applications :</strong></h5> <ol> <li>Optical switch</li> <li>Light detecting portion of a remote control</li> <li>AV instruments such as Audio, TV, VCR, CD, MD, DVD, etc.</li> <li>Home appliances such as Air-conditioner, Fan, etc.</li> <li>CATV set-top boxes</li> <li>Multi-media Equipment.</li> </ol> <hr /> <h4><strong>Features :</strong></h4> <ol> <li>Photodetector and preamplifier in one package.</li> <li>Internal filter for PCM frequency.</li> <li>Inner shield, good anti-interference ability.</li> <li>High immunity against ambient light.</li> <li>Improved shielding against electric field disturbance</li> <li>3.0V or 5.0V supply voltage; low power consumption.</li> <li>TTL and CMOS compatibility.</li> <li>Suitable transmission code:NEC code, RC5 code.</li> <li>Universal receiver. 38 KHz</li> <li>Infrared receiver.</li> <li>Infrared remote control receiver.</li> <li>TL1838 VS1838B. 38khz</li> </ol> <hr /> <h4><strong>Package Includes :</strong></h4> <p>5 x IR Receiving Head VS1838B.</p>

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
IR ReceiverVCC/GND/OUT3.3-5V / GND / board digital pin
📟
Infrared Receiver 3-PIN
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Infrared Receiver 3-PIN - Arduino Uno
Infrared Receiver 3-PIN - Arduino Nano
Infrared Receiver 3-PIN - Arduino Mega
Infrared Receiver 3-PIN - ESP32
Infrared Receiver 3-PIN - ESP8266
Infrared Receiver 3-PIN - STM32
Infrared Receiver 3-PIN - Raspberry Pi Pico
📄 File: infrared_receiver_3-pin_-_arduino_uno.inoArduino Uno
428 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// IR receiver OUT pin 2 on Arduino Uno
6#include <IRremote.hpp>
7
8#define IR_RECEIVE_PIN 2
9
10void setup() {
11 Serial.begin(115200);
12 IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK);
13}
14
15void loop() {
16 if (IrReceiver.decode()) {
17 Serial.print("Received code: 0x");
18 Serial.println(IrReceiver.decodedIRData.decodedRawData, HEX);
19 IrReceiver.resume();
20 }
21}
📄 File: infrared_receiver_3-pin_-_arduino_nano.inoArduino Nano
429 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// IR receiver OUT pin 2 on Arduino Nano
6#include <IRremote.hpp>
7
8#define IR_RECEIVE_PIN 2
9
10void setup() {
11 Serial.begin(115200);
12 IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK);
13}
14
15void loop() {
16 if (IrReceiver.decode()) {
17 Serial.print("Received code: 0x");
18 Serial.println(IrReceiver.decodedIRData.decodedRawData, HEX);
19 IrReceiver.resume();
20 }
21}
📄 File: infrared_receiver_3-pin_-_arduino_mega.inoArduino Mega
429 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// IR receiver OUT pin 2 on Arduino Mega
6#include <IRremote.hpp>
7
8#define IR_RECEIVE_PIN 2
9
10void setup() {
11 Serial.begin(115200);
12 IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK);
13}
14
15void loop() {
16 if (IrReceiver.decode()) {
17 Serial.print("Received code: 0x");
18 Serial.println(IrReceiver.decodedIRData.decodedRawData, HEX);
19 IrReceiver.resume();
20 }
21}
📄 File: infrared_receiver_3-pin_-_esp32.inoESP32
422 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// IR receiver OUT pin 4 on ESP32
6#include <IRremote.hpp>
7
8#define IR_RECEIVE_PIN 4
9
10void setup() {
11 Serial.begin(115200);
12 IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK);
13}
14
15void loop() {
16 if (IrReceiver.decode()) {
17 Serial.print("Received code: 0x");
18 Serial.println(IrReceiver.decodedIRData.decodedRawData, HEX);
19 IrReceiver.resume();
20 }
21}
📄 File: infrared_receiver_3-pin_-_esp8266.inoESP8266
426 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// IR receiver OUT pin D4 on ESP8266
6#include <IRremote.hpp>
7
8#define IR_RECEIVE_PIN D4
9
10void setup() {
11 Serial.begin(115200);
12 IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK);
13}
14
15void loop() {
16 if (IrReceiver.decode()) {
17 Serial.print("Received code: 0x");
18 Serial.println(IrReceiver.decodedIRData.decodedRawData, HEX);
19 IrReceiver.resume();
20 }
21}
📄 File: infrared_receiver_3-pin_-_stm32.inoSTM32
426 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// IR receiver OUT pin PB4 on STM32
6#include <IRremote.hpp>
7
8#define IR_RECEIVE_PIN PB4
9
10void setup() {
11 Serial.begin(115200);
12 IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK);
13}
14
15void loop() {
16 if (IrReceiver.decode()) {
17 Serial.print("Received code: 0x");
18 Serial.println(IrReceiver.decodedIRData.decodedRawData, HEX);
19 IrReceiver.resume();
20 }
21}
📄 File: infrared_receiver_3-pin_-_raspberry_pi_pico.inoRaspberry Pi Pico
434 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// IR receiver OUT pin 2 on Raspberry Pi Pico
6#include <IRremote.hpp>
7
8#define IR_RECEIVE_PIN 2
9
10void setup() {
11 Serial.begin(115200);
12 IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK);
13}
14
15void loop() {
16 if (IrReceiver.decode()) {
17 Serial.print("Received code: 0x");
18 Serial.println(IrReceiver.decodedIRData.decodedRawData, HEX);
19 IrReceiver.resume();
20 }
21}
Packaged 3-pin IR receiver module (TSOP-style) for remote-control decoding.

نظرة عامة ومواصفات المنتج — بالعربية

Infrared Receiver 3-PIN متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Sensors، بسعر 6,00 EGP. كود المنتج لدينا: EK489. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • Product Type: Infrared Receiver
  • Pa Model: 3-Pin IR Receiver
  • Sensor Type: IR Remote Receiver
  • Signal Type: Digital
  • Operating Voltage (V): 2.7 – 5.5
  • Operating Current (Ma): < 1
  • Carrier Frequency (Khz): 38
  • Detection Range (M): 5 – 10 (approx.)

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من Sensors في إكوسترا.

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
Product TypeInfrared Receiver
Model3-Pin IR Receiver
Sensor TypeIR Remote Receiver
Signal TypeDigital
Operating Voltage (V)2.7 – 5.5
Operating Current (mA)< 1
Carrier Frequency (kHz)38
Detection Range (m)5 – 10 (approx.)
Viewing Angle (°)45 – 60
Length (mm)7
Width (mm)6
Height (mm)5
Weight (g)1
Lens TypeBlack IR Filter
Pin Count3 (VCC, GND, OUT)
Mounting TypeThrough Hole (THT)
CompatibilityArduino, Microcontrollers
ApplicationRemote Control Systems, IR Signal Reception, Home Automation, DIY Electronics

Customer Reviews