Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use E18-D80NK: Examples, Pinouts, and Specs

Image of E18-D80NK
Cirkit Designer LogoDesign with E18-D80NK in Cirkit Designer

Introduction

The E18-D80NK is an adjustable Infrared Proximity Sensor designed for contactless object detection. This sensor is widely used in robotics, automation lines, and various DIY projects due to its non-contact detection capabilities. It operates by emitting infrared light and detecting the reflection from nearby objects to determine their presence within a certain range.

Explore Projects Built with E18-D80NK

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Battery-Powered Sumo Robot with IR Sensors and DC Motors
Image of MASSIVE SUMO AUTO BOARD: A project utilizing E18-D80NK in a practical application
This circuit is designed for a robotic system, featuring a Massive Sumo Board as the central controller. It integrates multiple FS-80NK diffuse IR sensors and IR line sensors for obstacle detection and line following, respectively, and controls two GM25 DC motors via MD13s motor drivers for movement. Power is supplied by an 11.1V LiPo battery.
Cirkit Designer LogoOpen Project in Cirkit Designer
WiFi-Controlled Basket-Carrying Robot with GPS and GSM Notification
Image of trash collecting vessel: A project utilizing E18-D80NK in a practical application
This circuit is designed for a 4-wheeled WiFi-controlled car with a basket, which uses an ESP8266 NodeMCU microcontroller for logic control. It features an IR sensor for basket full detection, a GPS module for location tracking, and a GSM module (Sim800l) for sending SMS notifications. The L298N motor driver controls four DC gearmotors for movement, and the system is powered by a Li-ion battery with a 7805 voltage regulator providing stable power to the GSM module.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Line Following Robot with IR Sensors and Cytron URC10 Motor Controller
Image of URC10 SUMO AUTO: A project utilizing E18-D80NK in a practical application
This circuit is a robotic control system that uses multiple IR sensors for line detection and obstacle avoidance, powered by a 3S LiPo battery. The Cytron URC10 motor driver, controlled by a microcontroller, drives two GM25 DC motors based on input from the sensors and a rocker switch, with a 7-segment panel voltmeter displaying the battery voltage.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Emergency Alert System with NUCLEO-F072RB, SIM800L, and GPS NEO 6M
Image of women safety: A project utilizing E18-D80NK in a practical application
This circuit is an emergency alert system that uses a NUCLEO-F072RB microcontroller to send SMS alerts and make calls via a SIM800L GSM module, while obtaining location data from a GPS NEO 6M module. The system is powered by a Li-ion battery and includes a TP4056 module for battery charging and protection, with a rocker switch to control power to the microcontroller.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with E18-D80NK

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of MASSIVE SUMO AUTO BOARD: A project utilizing E18-D80NK in a practical application
Battery-Powered Sumo Robot with IR Sensors and DC Motors
This circuit is designed for a robotic system, featuring a Massive Sumo Board as the central controller. It integrates multiple FS-80NK diffuse IR sensors and IR line sensors for obstacle detection and line following, respectively, and controls two GM25 DC motors via MD13s motor drivers for movement. Power is supplied by an 11.1V LiPo battery.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of trash collecting vessel: A project utilizing E18-D80NK in a practical application
WiFi-Controlled Basket-Carrying Robot with GPS and GSM Notification
This circuit is designed for a 4-wheeled WiFi-controlled car with a basket, which uses an ESP8266 NodeMCU microcontroller for logic control. It features an IR sensor for basket full detection, a GPS module for location tracking, and a GSM module (Sim800l) for sending SMS notifications. The L298N motor driver controls four DC gearmotors for movement, and the system is powered by a Li-ion battery with a 7805 voltage regulator providing stable power to the GSM module.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of URC10 SUMO AUTO: A project utilizing E18-D80NK in a practical application
Battery-Powered Line Following Robot with IR Sensors and Cytron URC10 Motor Controller
This circuit is a robotic control system that uses multiple IR sensors for line detection and obstacle avoidance, powered by a 3S LiPo battery. The Cytron URC10 motor driver, controlled by a microcontroller, drives two GM25 DC motors based on input from the sensors and a rocker switch, with a 7-segment panel voltmeter displaying the battery voltage.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of women safety: A project utilizing E18-D80NK in a practical application
Battery-Powered Emergency Alert System with NUCLEO-F072RB, SIM800L, and GPS NEO 6M
This circuit is an emergency alert system that uses a NUCLEO-F072RB microcontroller to send SMS alerts and make calls via a SIM800L GSM module, while obtaining location data from a GPS NEO 6M module. The system is powered by a Li-ion battery and includes a TP4056 module for battery charging and protection, with a rocker switch to control power to the microcontroller.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Automated machinery for object detection
  • Counting systems for production lines
  • Robotics for obstacle avoidance
  • User presence detection in interactive installations

Technical Specifications

Key Technical Details

  • Operating Voltage: 5V DC
  • Current Consumption: 100 mA (max)
  • Detection Range: 3-80 cm (adjustable)
  • Output Type: Digital (High/Low signal)
  • Response Time: 2 ms
  • Ambient Light Resistance: < 10000 lux
  • Operating Temperature: -25°C to +55°C

Pin Configuration and Descriptions

Pin Number Description Notes
1 VCC Connect to 5V power supply
2 GND Connect to ground
3 Digital Output Outputs HIGH or LOW signal

Usage Instructions

How to Use the E18-D80NK in a Circuit

  1. Power Connections: Connect the VCC pin to a 5V power supply and the GND pin to the ground of your circuit.
  2. Output Signal: Connect the Digital Output pin to a digital input pin on your microcontroller (e.g., Arduino).
  3. Adjusting Range: Turn the potentiometer on the sensor to adjust the detection range as needed for your application.

Important Considerations and Best Practices

  • Ensure that the sensor is mounted securely and is not subjected to mechanical vibrations.
  • Avoid exposing the sensor to direct sunlight or strong artificial light sources to prevent false detections.
  • Keep the sensor's lens clean and free from dust for accurate operation.
  • When adjusting the detection range, make small incremental adjustments and test the detection to find the optimal setting.

Example Code for Arduino UNO

// Define the digital input pin where the sensor is connected
const int proximitySensorPin = 7;

void setup() {
  // Initialize the proximitySensorPin as an input
  pinMode(proximitySensorPin, INPUT);
  Serial.begin(9600); // Start serial communication at 9600 baud rate
}

void loop() {
  // Read the state of the proximity sensor
  int sensorState = digitalRead(proximitySensorPin);

  // Check if the sensor is detecting an object
  if (sensorState == HIGH) {
    Serial.println("Object Detected");
  } else {
    Serial.println("No Object Detected");
  }

  // Wait for 100 milliseconds before reading again
  delay(100);
}

Troubleshooting and FAQs

Common Issues

  • Sensor not detecting objects: Check the power connections, ensure the sensor is properly powered, and adjust the detection range.
  • False detections: Reduce ambient light interference, check for reflective surfaces near the sensor, and clean the lens.
  • Inconsistent readings: Stabilize the sensor mounting and avoid mechanical vibrations.

Solutions and Tips for Troubleshooting

  • If the sensor is not functioning, verify that all connections are secure and the power supply is within the specified voltage range.
  • For erratic sensor behavior, recalibrate the detection range and ensure that the environment is free from factors that could affect the sensor's performance.
  • If the sensor's output remains high or low regardless of object presence, inspect the sensor for physical damage or replace it with a new one.

FAQs

Q: Can the E18-D80NK sensor detect any material? A: The sensor is generally capable of detecting any object that reflects infrared light, but its effectiveness may vary with the object's surface and color.

Q: Is it possible to use multiple E18-D80NK sensors in one system? A: Yes, multiple sensors can be used, but ensure they are spaced adequately to prevent cross-talk and interference.

Q: How do I adjust the detection range of the sensor? A: Turn the onboard potentiometer clockwise to increase the range and counterclockwise to decrease it.

Q: What is the maximum detection range of the E18-D80NK sensor? A: The maximum specified range is 80 cm, but optimal performance is often found at shorter distances.

For further assistance or inquiries, please contact the manufacturer or your local distributor.