








RC522 RFID 13.56MHZ Reader Writer Module- RFID Reader/Writer 13.56MHz RC522 (Arduino Compatible)
RC522 RFID 13.56MHZ Reader Writer Module Radio Frequency Identification (RFID) technology uses radio waves to identify people or objects. There is a device that reads information contained in a wireless device or “tag” from a distance without making any physical contact or requiring a line of sight. RFID RC522 13.56MHz Card Reader Module with key fob and card tag, ideal for Arduino, Raspberry Pi, ESP32. Perfect for access control, attendance systems, security projects, and IoT automation.
₹ 76 ₹149
149



Add FAQ
Detailed Product Description:
Unlock secure and efficient contactless communication in your embedded systems with the versatile RC522 RFID 13.56MHZ Reader Writer Module. Powered by the NXP MFRC522 chip, this highly integrated reader/writer IC is your go-to solution for implementing RFID-based access control, attendance systems, inventory management, and other smart applications. Operating at the global standard 13.56MHz frequency, the module is fully compliant with ISO 14443A/MIFARE protocols, enabling seamless interaction with a wide range of common RFID cards and key fobs.
The RC522 RFID module primarily communicates with microcontrollers like Arduino via the SPI interface, offering high-speed data transfer rates of up to 10 Mbit/s, crucial for rapid tag reading and writing operations. It can also support I2C and UART communication, providing design flexibility. Its integrated analog circuitry efficiently demodulates and decodes responses from passive transponders, while internal buffers and a CRC coprocessor ensure data integrity. The typical operating voltage range is 2.5V to 3.3V, but importantly, its communication pins are 5V tolerant, allowing direct connection to 5V microcontrollers like Arduino Uno without the need for additional logic level converters.
When you buy RC522 RFID module kits in India, they often include a standard S50 blank card and a key fob, allowing for immediate prototyping. The module's compact design and built-in antenna make integration into various projects straightforward. Its read/write distance typically ranges from 2-5 cm, depending on the tag and environmental conditions. For those seeking reliable performance at an accessible RC522 price, this module is an excellent choice for a wide array of RFID security projects and NFC module 13.56MHz applications where a robust and budget-friendly solution is required.
The RC522 RFID Module is a high-frequency (13.56 MHz) RFID reader/writer module that uses the MFRC522 chip to communicate via the SPI interface. It's ideal for projects requiring contactless authentication, such as door locks, time attendance systems, or ID verification.
Compact, efficient, and cost-effective, it supports ISO/IEC 14443 Type A cards (including MIFARE). The module operates with 3.3V logic, and it is widely compatible with platforms like Arduino, ESP8266, Raspberry Pi, and STM32.
This module comes bundled with a MIFARE 1KB RFID card and key fob, making it a plug-and-play solution for your RFID-based projects.
Key Features:
-
13.56MHz RFID card reader module
-
Includes 1 RFID card and 1 key fob tag
-
Works with MIFARE 1K/4K cards (ISO/IEC 14443)
-
Compatible with Arduino, Raspberry Pi, ESP32, STM32
-
SPI interface for fast communication
-
Perfect for IoT, security, and embedded access systems
Technical Specifications:
Specification | Details |
---|---|
Frequency | 13.56 MHz |
IC Chip | NXP MFRC522 |
Interface | SPI (also supports I2C/UART via firmware) |
Operating Voltage | 3.3V |
Current Consumption | ~13–26 mA |
Range | Up to 5 cm (depends on antenna size) |
Supported Cards | MIFARE S50, MIFARE S70, UltraLight, etc. |
Dimensions | ~40mm × 60mm |
How to Use with Arduino:
Wiring RC522 to Arduino UNO:
RC522 Pin | Arduino UNO Pin |
---|---|
SDA | D10 |
SCK | D13 |
MOSI | D11 |
MISO | D12 |
IRQ | Not connected |
GND | GND |
RST | D9 |
3.3V | 3.3V |
Arduino Code Example (Using MFRC522 Library):
#include
#include
#define SS_PIN 10
#define RST_PIN 9
MFRC522 mfrc522(SS_PIN, RST_PIN);
void setup() {
Serial.begin(9600);
SPI.begin();
mfrc522.PCD_Init();
Serial.println("Scan your RFID card...");
}
void loop() {
if ( ! mfrc522.PICC_IsNewCardPresent())
return;
if ( ! mfrc522.PICC_ReadCardSerial())
return;
Serial.print("UID tag: ");
for (byte i = 0; i < mfrc522.uid.size; i++) {
Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " ");
Serial.print(mfrc522.uid.uidByte[i], HEX);
}
Serial.println();
}
Install the "MFRC522 by GithubCommunity" library from the Arduino Library Manager.
Applications:
-
RFID door lock and access control systems
-
Attendance logging systems
-
Contactless smart card authentication
-
Security and identity verification systems
-
IoT automation using RFID cards
Package Includes:
-
1 × RC522 RFID Module
-
1 × 13.56MHz RFID Card (MIFARE 1K)
-
1 × RFID Key Fob Tag
-
1 × Set of header pins
0 Reviews For this Product
