Interfacing RDM6300 RFID Reader Module With Arduino

by hIOTron IoT in Circuits > Arduino

3 Views, 0 Favorites, 0 Comments

Interfacing RDM6300 RFID Reader Module With Arduino

RFID interfacing with RDM6300.PNG

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

Supplies

Hardware Components

Arduino Nano R3

RDM6300 RFID Reader Module

125 kHz Tags

Software Components

Arduino IDE

About Project

RDM6300 with RFID reader.jpg
RDM reader.jpg

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.

Enrollment in the IoT Course will help you to get a clear view of the Internet of Things Solutions.

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); }