IR LED 5mm Infrared Receiver

Apple Shopping Event

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

2,60 EGP

7 People watching this product now!

Payment Methods:

Description

The IR LED 5mm Infrared Receiver is a highly sensitive photodiode/phototransistor designed to detect infrared light in the 940nm range, making it ideal for use in remote control systems, obstacle detection, line-following robots, and wireless communication. This component converts incoming infrared signals into electrical signals, allowing microcontrollers like Arduino, Raspberry Pi, and ESP32 to interpret IR commands.

Housed in a standard 5mm black epoxy lens, the receiver filters visible light, ensuring reliable detection of IR signals while minimizing ambient light interference. It is compatible with most IR transmitter LEDs and remote protocols (depending on application).


Key Features

  • 5mm IR receiver for detecting infrared signals

  • High sensitivity and fast response time

  • Optimized for 940nm IR wavelength

  • Filters visible light for improved accuracy

  • Works with Arduino, Raspberry Pi, and IR remote controls

  • Ideal for proximity sensors, line followers, and IR decoding


Specifications

Parameter Value
Component Type Infrared Receiver (Photodiode or Phototransistor)
Lens Diameter 5mm
Peak Sensitivity ~940nm wavelength
Reverse Voltage 5V (typical max)
Response Time < 15μs
Package Type Through-hole (2-pin or 3-pin based on model)
Viewing Angle 20° – 40° (varies)
Applications IR sensing, remote reception, object detection

Package Includes

  • 1 × 5mm Infrared (IR) Receiver LED

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
IR ReceiverAnode/Cathodevia pull-up to board 3.3-5V / to board digital pin + GND
📟
IR LED 5mm Infrared Receiver
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
IR LED 5mm Infrared Receiver - Arduino Uno
IR LED 5mm Infrared Receiver - Arduino Nano
IR LED 5mm Infrared Receiver - Arduino Mega
IR LED 5mm Infrared Receiver - ESP32
IR LED 5mm Infrared Receiver - ESP8266
IR LED 5mm Infrared Receiver - STM32
IR LED 5mm Infrared Receiver - Raspberry Pi Pico
📄 File: ir_led_5mm_infrared_receiver_-_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: ir_led_5mm_infrared_receiver_-_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: ir_led_5mm_infrared_receiver_-_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: ir_led_5mm_infrared_receiver_-_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: ir_led_5mm_infrared_receiver_-_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: ir_led_5mm_infrared_receiver_-_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: ir_led_5mm_infrared_receiver_-_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}
Bare IR photodiode/phototransistor receiver - use with the IRremote library to decode remote-control signals.

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

IR LED 5mm Infrared Receiver متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Electronic Components وPIR / IR and Optical Sensor، بسعر 2,60 EGP. كود المنتج لدينا: EK1755. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • Product Type: Infrared Receiver
  • Pa Model: 5mm IR Receiver
  • Device Type: Infrared Photodiode / Phototransistor
  • Diameter (Mm): 5
  • Wavelength (Nm): 940 (typical)
  • Operating Voltage (V): 3 – 5
  • Viewing Angle (°): 35 – 60 (approx.)
  • Length (Mm): 8.7 (body without pins)

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

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

Specification

Specification

WeightWeight2 g
Dimensions1 × 1 × 0,5 cm
Product TypeInfrared Receiver
Model5mm IR Receiver
Device TypeInfrared Photodiode / Phototransistor
Diameter (mm)5
Wavelength (nm)940 (typical)
Operating Voltage (V)3 – 5
Viewing Angle (°)35 – 60 (approx.)
Length (mm)8.7 (body without pins)
Width (mm)5
Height (mm)5
Weight (g)1
Lens TypeDark / Black Lens
Signal TypeAnalog Output
Mounting TypeThrough Hole (THT)
Pin Count2
ApplicationIR Detection, Remote Control Receivers, Sensors, DIY Electronics

Customer Reviews