Close
0%
0%

Interfacing RDM6300 RFID Module with Arduino

The RDM6300 RFID Reader is the type of RFID module with a 125 kHz frequency,

Similar projects worth following
The project is about how to interface the RDM6300 RFID module with the help of arduino.

Project Details

RDM6300 RFID Reader Module

The RDM6300 125 kHz EM4100 RFID Card ID Reader Module is specifically manufactured to read and write data from 125 kHz compatible tags. It can be utilized in surveillance systems for workplaces and residences, personal authentication, access management, digital toys as well as other output control systems.

RFID board utilizes an advanced RF receiver circuit and built-in MCU architecture, integrated with a high-efficiency decoding algorithm, to look through the EM4100 and all the compatible cards. Any microcontroller with UART serial peripheral can be utilized to operate with this RFID reader.

Then connect Arduino to the laptop and upload the code. Then just open the serial monitor at a baud rate of 9600 as well as scan the RFID tag on the Module’s Antenna. The respective tag number will be printed on the serial monitor.

  • 1 × Arduino Nano R3
  • 1 × RDM6300 RFID Reader Module
  • 1 × 125 kHz Tags

  • 1
    Run a Program

    #include
    #define RDM6300_RX_PIN 2
    #define READ_LED_PIN 13
    Rdm6300 rdm6300;
    void setup()
    {
    Serial.begin(9600);
    pinMode(READ_LED_PIN, OUTPUT);
    digitalWrite(READ_LED_PIN, LOW);
    rdm6300.begin(RDM6300_RX_PIN);
    Serial.println("\nkeep RFID tag near the rdm6300...");
    }
    void loop()
    {
    /* if non-zero tag_id, update() returns true- a new tag is near! */
    if (rdm6300.update())
    Serial.println(rdm6300.get_tag_id(), HEX);
    digitalWrite(READ_LED_PIN, rdm6300.is_tag_near());
    delay(10);
    }

View all instructions

Enjoy this project?

Share

Discussions

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates