E18-D80NK Adjustable Infrared Sensor Switch 3-80cm

  • Adjustable sensing range: 3 cm to 80 cm
  • Digital NPN output (normally open)
  • Operates at 5V DC with low current consumption
  • Fast response time (<2 ms)
  • Compact and easy to install
  • Ideal for obstacle detection and automation applications
SKU: EK533 Categories: , Tags: , ,

Apple Shopping Event

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

275,00 EGP

3 People watching this product now!

Payment Methods:

Description

The E18-D80NK Adjustable Infrared Sensor Switch 3-80cm is a set of transmitter and receiver in one of the photoelectric switch sensor. The detection distance can be adjusted according to the demand. The sensor has a detection range of 3-80cm.

The Adjustable Infrared Sensor Switch is small, easy to use, inexpensive, easy to assemble and can be widely used in a robot to avoid obstacles, interactive media, industrial assembly lines, and many other occasions.

The switching signal output differs in accordance with the obstacles. It remains high when no obstacles and remains low when there are obstacles. There is a bright light behind the probe to detect the scope of 3cm – 80cm.

Connection

Red wire: +5V
Green wire: GND
Yellow wire: Digital output

OR

Brown wire: +5V
Blue wire: GND
Black wire: Digital output.


Features :

  1. Diffuse reflective type.
  2. Digital output.
  3. Adjustable detection distance.
  4. Low consumption.
  5. Compact size.

Package Includes :

1 x E18-D80NK Adjustable Infrared Sensor Switch 3-80cm.

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
E18-D80NKBrown/Blue/Black5V (Brown) / GND (Blue) / board digital pin via pull-up, or use INPUT_PULLUP (Black)
📟
E18-D80NK Adjustable Infrared Sensor Switch 3-80cm
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
E18-D80NK Adjustable Infrared Sensor Switch 3-80cm - Arduino Uno
E18-D80NK Adjustable Infrared Sensor Switch 3-80cm - Arduino Nano
E18-D80NK Adjustable Infrared Sensor Switch 3-80cm - Arduino Mega
E18-D80NK Adjustable Infrared Sensor Switch 3-80cm - ESP32
E18-D80NK Adjustable Infrared Sensor Switch 3-80cm - ESP8266
E18-D80NK Adjustable Infrared Sensor Switch 3-80cm - STM32
E18-D80NK Adjustable Infrared Sensor Switch 3-80cm - Raspberry Pi Pico
📄 File: e18-d80nk_adjustable_infrared_sensor_switch_3-80cm_-_arduino_uno.inoArduino Uno
444 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 7 on Arduino Uno. Onboard comparator IC (e.g. LM393) gives a clean digital output - no ADC needed.
6#define IR_PIN 7
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(IR_PIN, INPUT);
11}
12
13void loop() {
14 int obstacle = digitalRead(IR_PIN); // most modules: LOW = obstacle detected
15 Serial.println(obstacle == LOW ? "Obstacle detected!" : "Path clear.");
16 delay(200);
17}
📄 File: e18-d80nk_adjustable_infrared_sensor_switch_3-80cm_-_arduino_nano.inoArduino Nano
445 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 7 on Arduino Nano. Onboard comparator IC (e.g. LM393) gives a clean digital output - no ADC needed.
6#define IR_PIN 7
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(IR_PIN, INPUT);
11}
12
13void loop() {
14 int obstacle = digitalRead(IR_PIN); // most modules: LOW = obstacle detected
15 Serial.println(obstacle == LOW ? "Obstacle detected!" : "Path clear.");
16 delay(200);
17}
📄 File: e18-d80nk_adjustable_infrared_sensor_switch_3-80cm_-_arduino_mega.inoArduino Mega
445 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 7 on Arduino Mega. Onboard comparator IC (e.g. LM393) gives a clean digital output - no ADC needed.
6#define IR_PIN 7
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(IR_PIN, INPUT);
11}
12
13void loop() {
14 int obstacle = digitalRead(IR_PIN); // most modules: LOW = obstacle detected
15 Serial.println(obstacle == LOW ? "Obstacle detected!" : "Path clear.");
16 delay(200);
17}
📄 File: e18-d80nk_adjustable_infrared_sensor_switch_3-80cm_-_esp32.inoESP32
440 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 27 on ESP32. Onboard comparator IC (e.g. LM393) gives a clean digital output - no ADC needed.
6#define IR_PIN 27
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(IR_PIN, INPUT);
11}
12
13void loop() {
14 int obstacle = digitalRead(IR_PIN); // most modules: LOW = obstacle detected
15 Serial.println(obstacle == LOW ? "Obstacle detected!" : "Path clear.");
16 delay(200);
17}
📄 File: e18-d80nk_adjustable_infrared_sensor_switch_3-80cm_-_esp8266.inoESP8266
442 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin D6 on ESP8266. Onboard comparator IC (e.g. LM393) gives a clean digital output - no ADC needed.
6#define IR_PIN D6
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(IR_PIN, INPUT);
11}
12
13void loop() {
14 int obstacle = digitalRead(IR_PIN); // most modules: LOW = obstacle detected
15 Serial.println(obstacle == LOW ? "Obstacle detected!" : "Path clear.");
16 delay(200);
17}
📄 File: e18-d80nk_adjustable_infrared_sensor_switch_3-80cm_-_stm32.inoSTM32
442 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin PB1 on STM32. Onboard comparator IC (e.g. LM393) gives a clean digital output - no ADC needed.
6#define IR_PIN PB1
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(IR_PIN, INPUT);
11}
12
13void loop() {
14 int obstacle = digitalRead(IR_PIN); // most modules: LOW = obstacle detected
15 Serial.println(obstacle == LOW ? "Obstacle detected!" : "Path clear.");
16 delay(200);
17}
📄 File: e18-d80nk_adjustable_infrared_sensor_switch_3-80cm_-_raspberry_pi_pico.inoRaspberry Pi Pico
452 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 16 on Raspberry Pi Pico. Onboard comparator IC (e.g. LM393) gives a clean digital output - no ADC needed.
6#define IR_PIN 16
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(IR_PIN, INPUT);
11}
12
13void loop() {
14 int obstacle = digitalRead(IR_PIN); // most modules: LOW = obstacle detected
15 Serial.println(obstacle == LOW ? "Obstacle detected!" : "Path clear.");
16 delay(200);
17}
IR proximity switch with adjustable range - digital output (NPN).

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

E18-D80NK Adjustable Infrared Sensor Switch 3-80cm متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Proximity Sensor وSensors، بسعر 275,00 EGP. كود المنتج لدينا: EK533. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

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

  • Product Name: E18-D80NK Adjustable Infrared Sensor Switch
  • Type: Infrared Proximity Sensor / Switch
  • الموديل: E18-D80NK
  • Detection Range: 3–80 cm (adjustable)
  • Operating Voltage: 3.3–5 V DC
  • Output Type: Digital (High/Low)
  • Output Current: ≤100 mA
  • Sensing Method: Infrared Reflection

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

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

Specification

Specification

WeightWeight6 g
Dimensions3,6 × 1,4 × 1,8 cm
Product NameE18-D80NK Adjustable Infrared Sensor Switch
TypeInfrared Proximity Sensor / Switch
ModelE18-D80NK
Detection Range3–80 cm (adjustable)
Operating Voltage3.3–5 V DC
Output TypeDigital (High/Low)
Output Current≤100 mA
Sensing MethodInfrared Reflection
Response Time<2 ms (typical)
Mounting TypeThrough-Hole / Bracket Mount
MaterialPlastic Housing with PCB
Operating Temperature-10°C to +70°C
ApplicationsObstacle Detection, Object Sensing, Arduino / Microcontroller Projects, DIY Robotics, Automation
Package Contents1× E18-D80NK Adjustable Infrared Sensor Switch 3–80 cm

Customer Reviews