RDM6300 RFID Reader Module – 125KHz Serial Interface for Contactless Identification
Detailed Description: The RDM6300 RFID Reader Module is a compact and efficient 125KHz RFID reader designed for contactless identification and access control applications. It reads EM4100 compatible RFID cards or tags and outputs data via a simple UART (serial) interface, making it perfect for integration with microcontrollers like Arduino, ESP32, or Raspberry Pi.
Operating at 125KHz, this module is ideal for low-frequency RFID applications where cost, simplicity, and stability are key. It supports a reading distance of up to 5–10 cm depending on tag size and operates with minimal power—perfect for embedded and portable systems.
Key Features:
125KHz RFID Reader – Compatible with EM4100/EM4102 RFID cards and tags
UART Serial Interface – Easy to connect to microcontrollers (9600bps default)
Reading Distance: Up to 10cm depending on tag and environment
Small and Lightweight – Ideal for integration into compact enclosures
Low Power Consumption – Suitable for battery-powered systems
Simple Wiring – Just VCC, GND, TX, and RX
Built-in Antenna – No need for external antenna modules
LED Indicator – Shows card detection activity
Applications:
Access Control Systems – Doors, cabinets, lockers
Time Attendance Devices – Employee or student check-in systems
Embedded Electronics – Arduino or ESP32-based RFID projects
Contactless Identification – Smart cards, membership, or security systems
DIY & Educational Kits – Learn RFID tech in an interactive way
Specifications:
Model: RDM6300
Frequency: 125KHz (low-frequency RFID)
Compatible Tags: EM4100 / EM4102
Interface: UART Serial (TTL level)
Baud Rate: 9600 bps
Operating Voltage: 3.3V – 5V DC
Power Consumption: ~50mA
Reading Distance: 5–10 cm (typical)
Antenna: Built-in
Dimensions: ~38mm x 20mm x 8mm
The RDM6300 is the perfect entry-level RFID solution for anyone building secure, contactless identification systems.
21elseif (b == 3) { // end byte - full tag received
22Serial.print("Tag ID bytes: ");
23for (byte i = 0; i < idx; i++) Serial.print(buffer[i], HEX);
24Serial.println();
25 } elseif (idx < 14) {
26 buffer[idx++] = b;
27 }
28 }
29}
📄 File: rdm6300_rfid_reader_module_-_125khz_-_raspberry_pi_pico.inoRaspberry Pi Pico
789 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=1, TX=0 on Raspberry Pi Pico (module TX -> board RX)
6// Raspberry Pi Pico has extra hardware serial ports; using Serial1 here so USB Serial stays free for debug output.
7#define RFID_SERIAL Serial1
8
9byte buffer[14];
10byte idx = 0;
11
12voidsetup() {
13Serial.begin(115200);
14 RFID_SERIAL.begin(9600, SERIAL_8N1, 1, 0);
15}
16
17voidloop() {
18if (RFID_SERIAL.available()) {
19 byte b = RFID_SERIAL.read();
20if (b == 2) { idx = 0; } // start byte
21elseif (b == 3) { // end byte - full tag received
22Serial.print("Tag ID bytes: ");
23for (byte i = 0; i < idx; i++) Serial.print(buffer[i], HEX);
24Serial.println();
25 } elseif (idx < 14) {
26 buffer[idx++] = b;
27 }
28 }
29}
UART 125kHz RFID reader - streams a tag ID as ASCII/binary bytes framed by start/end markers.
نظرة عامة ومواصفات المنتج — بالعربية
RDM6300 RFID Reader Module – 125KHZ متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم RFID Cards, Tags & Reader وSensors، بسعر 175,00 EGP. كود المنتج لدينا: EK1831. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.
أهم المواصفات الفنية:
Product Name: RDM6300 RFID Reader Module – 125KHz
Type: RFID Reader Module
Operating Frequency: 125 KHz
Supported Tags: EM4100 / EM4102 compatible RFID cards and tags
Operating Voltage: 3.3V – 5V DC
Current Consumption: ≤ 50 mA
واجهة الاتصال: UART (TTL level)
Baud Rate: 9600 bps (default)
هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.