Maker Pro
Arduino

Interfacing RDM6300 RFID Reader Module with Arduino

April 16, 2021 by rasika Joshi
 
Share
banner

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

Hardware

Software

1 Arduino IDE

Summery:

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

About Project:

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.

RDM reader.jpg

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.

RDM6300 with RFID reader.jpg
#include <rdm6300.h>
#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);
}


Related Content

Categories

Comments


You May Also Like