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

How to Use EM 18: Examples, Pinouts, and Specs

Image of EM 18
Cirkit Designer LogoDesign with EM 18 in Cirkit Designer

Introduction

The EM 18 is an electromagnetic proximity sensor designed for detecting the presence of objects without requiring physical contact. Manufactured by READER MODULE, this sensor operates by emitting an electromagnetic field and detecting changes in that field caused by nearby metallic objects. It is widely used in applications requiring object detection, identification, and access control.

Explore Projects Built with EM 18

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
ESP32-Based Environmental Monitoring System with GSM Connectivity
Image of Acosta Thesis: A project utilizing EM 18 in a practical application
This circuit uses an ESP32 microcontroller to read data from a temperature sensor (LM35) and a gas sensor (MQ135), and then transmits this data via a SIM800L GSM module. The ESP32 handles the sensor data acquisition and communication with the GSM module to potentially send the data to a remote server or device.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Wi-Fi Controlled IR Sensor Array with ESP8266
Image of v3: A project utilizing EM 18 in a practical application
This circuit uses a WeMOS ESP8266 microcontroller to read data from two Sharp IR sensors through a 16-channel analog multiplexer. The system is powered by a 2x 18650 battery pack, and the multiplexer allows the microcontroller to select and read from multiple sensor inputs.
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 EM 18 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
ESP32-Based Smart Sensor System with Wi-Fi and GPS Integration
Image of smart helmet: A project utilizing EM 18 in a practical application
This circuit is an IoT-based sensor system using an ESP32 microcontroller to monitor alcohol levels, motion, and IR signals. It integrates an MQ-3 alcohol sensor, an MPU6050 accelerometer and gyroscope, an IR sensor, and a SIM808 GSM GPS module to collect data and send it to a cloud server for further analysis. The system also includes an LED indicator controlled by the ESP32.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with EM 18

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 Acosta Thesis: A project utilizing EM 18 in a practical application
ESP32-Based Environmental Monitoring System with GSM Connectivity
This circuit uses an ESP32 microcontroller to read data from a temperature sensor (LM35) and a gas sensor (MQ135), and then transmits this data via a SIM800L GSM module. The ESP32 handles the sensor data acquisition and communication with the GSM module to potentially send the data to a remote server or device.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of v3: A project utilizing EM 18 in a practical application
Battery-Powered Wi-Fi Controlled IR Sensor Array with ESP8266
This circuit uses a WeMOS ESP8266 microcontroller to read data from two Sharp IR sensors through a 16-channel analog multiplexer. The system is powered by a 2x 18650 battery pack, and the multiplexer allows the microcontroller to select and read from multiple sensor inputs.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of women safety: A project utilizing EM 18 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
Image of smart helmet: A project utilizing EM 18 in a practical application
ESP32-Based Smart Sensor System with Wi-Fi and GPS Integration
This circuit is an IoT-based sensor system using an ESP32 microcontroller to monitor alcohol levels, motion, and IR signals. It integrates an MQ-3 alcohol sensor, an MPU6050 accelerometer and gyroscope, an IR sensor, and a SIM808 GSM GPS module to collect data and send it to a cloud server for further analysis. The system also includes an LED indicator controlled by the ESP32.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • RFID-based access control systems
  • Inventory management and tracking
  • Attendance systems
  • Industrial automation for object detection
  • Security systems for proximity-based authentication

Technical Specifications

The EM 18 is a robust and reliable sensor with the following key technical specifications:

Parameter Value
Operating Voltage 5V DC
Operating Current 50mA (typical)
Frequency 125 kHz
Communication Protocol UART (9600 bps) or Wiegand
Detection Range Up to 10 cm (depending on tag type)
Dimensions 32mm x 32mm x 8mm
Operating Temperature -10°C to +70°C

Pin Configuration and Descriptions

The EM 18 module has a simple pinout for easy integration into circuits. Below is the pin configuration:

Pin Name Description
1 VCC Power supply input (5V DC)
2 GND Ground connection
3 TX UART Transmit pin for serial communication
4 RX UART Receive pin (not commonly used in standard applications)
5 BEEP Output pin for connecting an external buzzer (optional)
6 LED Output pin for connecting an external LED to indicate tag detection (optional)

Usage Instructions

The EM 18 is straightforward to use in a variety of circuits. Below are the steps and considerations for using the module effectively:

Connecting the EM 18 to a Circuit

  1. Power Supply: Connect the VCC pin to a 5V DC power source and the GND pin to the ground.
  2. Data Communication: Use the TX pin to send data to a microcontroller or computer via UART. The RX pin is rarely used.
  3. Optional Outputs: Connect the BEEP and LED pins to external components if you want additional feedback for tag detection.

Interfacing with an Arduino UNO

The EM 18 can be easily interfaced with an Arduino UNO for RFID-based applications. Below is an example code snippet to read RFID tag data:

// Example code to interface EM 18 with Arduino UNO
// This code reads RFID tag data and displays it on the Serial Monitor

#include <SoftwareSerial.h>

// Define the RX and TX pins for SoftwareSerial
SoftwareSerial RFID(2, 3); // RX = Pin 2, TX = Pin 3

void setup() {
  Serial.begin(9600);       // Initialize Serial Monitor at 9600 bps
  RFID.begin(9600);         // Initialize EM 18 communication at 9600 bps
  Serial.println("EM 18 RFID Reader Initialized");
}

void loop() {
  if (RFID.available()) {   // Check if data is available from EM 18
    String tagData = "";    // Variable to store the RFID tag data
    while (RFID.available()) {
      char c = RFID.read(); // Read each character from EM 18
      tagData += c;         // Append character to tagData
    }
    Serial.print("RFID Tag Detected: ");
    Serial.println(tagData); // Print the tag data to Serial Monitor
  }
}

Important Considerations and Best Practices

  • Ensure the power supply is stable and within the specified range (5V DC).
  • Keep the detection area free from interference caused by other electromagnetic devices.
  • Use proper pull-up resistors if required for external components like LEDs or buzzers.
  • Avoid exposing the module to extreme temperatures or moisture to ensure longevity.

Troubleshooting and FAQs

Common Issues and Solutions

Issue Possible Cause Solution
No data received from the module Incorrect wiring or loose connections Verify all connections, especially the TX pin to the microcontroller.
Detection range is too short Interference or low-quality RFID tags Use high-quality RFID tags and ensure no interference in the detection area.
Module not powering on Insufficient power supply Ensure a stable 5V DC power source is connected to the VCC pin.
Data is garbled or unreadable Incorrect baud rate configuration Set the UART baud rate to 9600 bps in your microcontroller or software.

FAQs

  1. Can the EM 18 detect non-metallic objects?
    No, the EM 18 is designed to detect RFID tags, which typically contain metallic components.

  2. What is the maximum detection range of the EM 18?
    The detection range is up to 10 cm, depending on the type and quality of the RFID tag.

  3. Can I use the EM 18 with a 3.3V microcontroller?
    The EM 18 requires a 5V power supply. Use a level shifter to interface with 3.3V microcontrollers.

  4. How do I know if the module is working?
    The onboard LED will blink when an RFID tag is detected, and data will be sent via the TX pin.

By following this documentation, users can effectively integrate and troubleshoot the EM 18 module in their projects.