RFID Reader/Writer RC522 SPI S50 with RFID Card and Tag

SKU: C05-05 Category: Tags: , ,

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

125,00 EGP

11 People watching this product now!

Payment Methods:

Description

<p>Do you want to know the work of RFID Reader/Writer RC522 SPI S50 CARD AND KEYCHAIN, then this Product is best for you . With this Product, you can detect radio waves produced by a reader to detect the presence of (then read the data stored on) an RFID tag</p> <p>This is <strong>RFID Reader/Writer RC522 SPI S50 CARD AND KEYCHAIN which works on non-contact 13.56mhz communication</strong>, is designed by NXP as <strong>low power consumption, low cost, and compact size read and write chip</strong>, is the best choice in the development of smart meters and portable hand-held devices.</p> <p>It uses an advanced modulation system,  <strong>fully integrated at 13.56MHz with all kinds of positive non-contact communication protocols. Support 14443A compatible answer signal</strong>. DSP deals with<strong> ISO14443A</strong> frames and error correction.</p> <p>This module can fit directly in handheld devices for mass production. The module uses the <strong>3.3V</strong> power supply and can communicate directly with any CPU board by connecting through the SPI protocol, which ensures reliable work, good reading distance.</p> <hr /> <h4><strong>Features :</strong></h4> <ol> <li>Highly integrated analog circuitry to demodulate and decode responses.</li> <li>Supports ISO/IEC 14443 A/MIFARE.</li> <li>Typical operating distance in reading/Write mode up to 50 mm.</li> <li>Supports ISO/IEC 14443 A higher transfer speed communication up to 848 kBd.</li> <li>SPI up to 10 Mbit/s.</li> <li>FIFO buffer handles 64 bytes send and receive.</li> <li>Flexible interrupt modes.</li> <li>Power-down by software mode.</li> <li>Programmable Timer.</li> <li>2.5 V to 3.3 V power supply.</li> <li>CRC coprocessor.</li> <li>Internal self-test.</li> </ol> <hr /> <h4><strong>Package Includes</strong></h4> <p>1 x RFID-RC522 Reader/Write Module<br />1 x Standard blank RFID card<br />2 x A Straight & right-angle header strip<br />1 x Special-shaped keychain RFID tag</p> <hr /> <h4><strong>Useful Links:</strong></h4> <p><a href=""http://playground.arduino.cc/Learning/MFRC522"" target=""_blank"" rel=""noopener noreferrer"">Arduino Playground for MFRC522</a></p> <p><a href=""http://www.instructables.com/id/Arduino-RC522-RFID-Door-Unlock/"" target=""_blank"" rel=""noopener noreferrer"">Arduino RC522 RFID Door Unlock</a></p> <p><a href=""http://www.electroschematics.com/11301/arduino-rfid-reader-rc522-access-control-system/"" target=""_blank"" rel=""noopener noreferrer"">Access Control System based on Arduino</a></p> <p><a href=""https://github.com/search?utf8=%E2%9C%93&q=MFRC522&type=Repositories&ref=searchresults"" target=""_blank"" rel=""noopener noreferrer"">Github Source code for various targets like PIC, AVR, ARM, and such</a></p>

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
RC522SDA/RSTboard SS pin / board RST pin
📟
RFID Reader/Writer RC522 SPI S50 with RFID Card and Tag
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
RFID Reader/Writer RC522 SPI S50 with RFID Card and Tag - Arduino Uno
RFID Reader/Writer RC522 SPI S50 with RFID Card and Tag - Arduino Nano
RFID Reader/Writer RC522 SPI S50 with RFID Card and Tag - Arduino Mega
RFID Reader/Writer RC522 SPI S50 with RFID Card and Tag - ESP32
RFID Reader/Writer RC522 SPI S50 with RFID Card and Tag - ESP8266
RFID Reader/Writer RC522 SPI S50 with RFID Card and Tag - STM32
RFID Reader/Writer RC522 SPI S50 with RFID Card and Tag - Raspberry Pi Pico
📄 File: rfid_reader/writer_rc522_spi_s50_with_rfid_card_and_tag_-_arduino_uno.inoArduino Uno
605 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// SDA(SS)=10, RST=9 on Arduino Uno (MOSI/MISO/SCK use hardware SPI pins)
6#include <SPI.h>
7#include <MFRC522.h>
8
9#define SS_PIN 10
10#define RST_PIN 9
11MFRC522 mfrc522(SS_PIN, RST_PIN);
12
13void setup() {
14 Serial.begin(115200);
15 SPI.begin();
16 mfrc522.PCD_Init();
17}
18
19void loop() {
20 if (!mfrc522.PICC_IsNewCardPresent() || !mfrc522.PICC_ReadCardSerial()) return;
21 Serial.print("Card UID:");
22 for (byte i = 0; i < mfrc522.uid.size; i++) { Serial.print(" "); Serial.print(mfrc522.uid.uidByte[i], HEX); }
23 Serial.println();
24 mfrc522.PICC_HaltA();
25}
📄 File: rfid_reader/writer_rc522_spi_s50_with_rfid_card_and_tag_-_arduino_nano.inoArduino Nano
606 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// SDA(SS)=10, RST=9 on Arduino Nano (MOSI/MISO/SCK use hardware SPI pins)
6#include <SPI.h>
7#include <MFRC522.h>
8
9#define SS_PIN 10
10#define RST_PIN 9
11MFRC522 mfrc522(SS_PIN, RST_PIN);
12
13void setup() {
14 Serial.begin(115200);
15 SPI.begin();
16 mfrc522.PCD_Init();
17}
18
19void loop() {
20 if (!mfrc522.PICC_IsNewCardPresent() || !mfrc522.PICC_ReadCardSerial()) return;
21 Serial.print("Card UID:");
22 for (byte i = 0; i < mfrc522.uid.size; i++) { Serial.print(" "); Serial.print(mfrc522.uid.uidByte[i], HEX); }
23 Serial.println();
24 mfrc522.PICC_HaltA();
25}
📄 File: rfid_reader/writer_rc522_spi_s50_with_rfid_card_and_tag_-_arduino_mega.inoArduino Mega
606 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// SDA(SS)=53, RST=9 on Arduino Mega (MOSI/MISO/SCK use hardware SPI pins)
6#include <SPI.h>
7#include <MFRC522.h>
8
9#define SS_PIN 53
10#define RST_PIN 9
11MFRC522 mfrc522(SS_PIN, RST_PIN);
12
13void setup() {
14 Serial.begin(115200);
15 SPI.begin();
16 mfrc522.PCD_Init();
17}
18
19void loop() {
20 if (!mfrc522.PICC_IsNewCardPresent() || !mfrc522.PICC_ReadCardSerial()) return;
21 Serial.print("Card UID:");
22 for (byte i = 0; i < mfrc522.uid.size; i++) { Serial.print(" "); Serial.print(mfrc522.uid.uidByte[i], HEX); }
23 Serial.println();
24 mfrc522.PICC_HaltA();
25}
📄 File: rfid_reader/writer_rc522_spi_s50_with_rfid_card_and_tag_-_esp32.inoESP32
599 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// SDA(SS)=5, RST=22 on ESP32 (MOSI/MISO/SCK use hardware SPI pins)
6#include <SPI.h>
7#include <MFRC522.h>
8
9#define SS_PIN 5
10#define RST_PIN 22
11MFRC522 mfrc522(SS_PIN, RST_PIN);
12
13void setup() {
14 Serial.begin(115200);
15 SPI.begin();
16 mfrc522.PCD_Init();
17}
18
19void loop() {
20 if (!mfrc522.PICC_IsNewCardPresent() || !mfrc522.PICC_ReadCardSerial()) return;
21 Serial.print("Card UID:");
22 for (byte i = 0; i < mfrc522.uid.size; i++) { Serial.print(" "); Serial.print(mfrc522.uid.uidByte[i], HEX); }
23 Serial.println();
24 mfrc522.PICC_HaltA();
25}
📄 File: rfid_reader/writer_rc522_spi_s50_with_rfid_card_and_tag_-_esp8266.inoESP8266
603 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// SDA(SS)=D8, RST=D3 on ESP8266 (MOSI/MISO/SCK use hardware SPI pins)
6#include <SPI.h>
7#include <MFRC522.h>
8
9#define SS_PIN D8
10#define RST_PIN D3
11MFRC522 mfrc522(SS_PIN, RST_PIN);
12
13void setup() {
14 Serial.begin(115200);
15 SPI.begin();
16 mfrc522.PCD_Init();
17}
18
19void loop() {
20 if (!mfrc522.PICC_IsNewCardPresent() || !mfrc522.PICC_ReadCardSerial()) return;
21 Serial.print("Card UID:");
22 for (byte i = 0; i < mfrc522.uid.size; i++) { Serial.print(" "); Serial.print(mfrc522.uid.uidByte[i], HEX); }
23 Serial.println();
24 mfrc522.PICC_HaltA();
25}
📄 File: rfid_reader/writer_rc522_spi_s50_with_rfid_card_and_tag_-_stm32.inoSTM32
605 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// SDA(SS)=PA4, RST=PB0 on STM32 (MOSI/MISO/SCK use hardware SPI pins)
6#include <SPI.h>
7#include <MFRC522.h>
8
9#define SS_PIN PA4
10#define RST_PIN PB0
11MFRC522 mfrc522(SS_PIN, RST_PIN);
12
13void setup() {
14 Serial.begin(115200);
15 SPI.begin();
16 mfrc522.PCD_Init();
17}
18
19void loop() {
20 if (!mfrc522.PICC_IsNewCardPresent() || !mfrc522.PICC_ReadCardSerial()) return;
21 Serial.print("Card UID:");
22 for (byte i = 0; i < mfrc522.uid.size; i++) { Serial.print(" "); Serial.print(mfrc522.uid.uidByte[i], HEX); }
23 Serial.println();
24 mfrc522.PICC_HaltA();
25}
📄 File: rfid_reader/writer_rc522_spi_s50_with_rfid_card_and_tag_-_raspberry_pi_pico.inoRaspberry Pi Pico
613 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// SDA(SS)=17, RST=20 on Raspberry Pi Pico (MOSI/MISO/SCK use hardware SPI pins)
6#include <SPI.h>
7#include <MFRC522.h>
8
9#define SS_PIN 17
10#define RST_PIN 20
11MFRC522 mfrc522(SS_PIN, RST_PIN);
12
13void setup() {
14 Serial.begin(115200);
15 SPI.begin();
16 mfrc522.PCD_Init();
17}
18
19void loop() {
20 if (!mfrc522.PICC_IsNewCardPresent() || !mfrc522.PICC_ReadCardSerial()) return;
21 Serial.print("Card UID:");
22 for (byte i = 0; i < mfrc522.uid.size; i++) { Serial.print(" "); Serial.print(mfrc522.uid.uidByte[i], HEX); }
23 Serial.println();
24 mfrc522.PICC_HaltA();
25}
SPI 13.56MHz RFID reader/writer.

نظرة عامة ومواصفات المنتج — بالعربية

RFID Reader/Writer RC522 SPI S50 with RFID Card and Tag متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم IoT and Wireless، بسعر 125,00 EGP. كود المنتج لدينا: C05-05. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • Product Name: RFID Reader/Writer RC522 SPI S50 with RFID Card and Tag
  • Rfid Module: MFRC522
  • Operating Frequency: 13.56 MHz
  • واجهة الاتصال: SPI
  • Supported Cards: MIFARE Classic S50 (1K)
  • Read / Write: Yes
  • Operating Voltage: 3.3V
  • Communication Distance: Up to 5 cm

منتج أصلي بجودة مضمونة من إكوسترا، مع دعم فني ومتابعة بعد البيع لكل عملائنا في مصر.

تصفّح المزيد من IoT and Wireless في إكوسترا.

Specification

Specification

WeightWeight0,008 g
Dimensions4 × 6 × 0,3 cm
Product NameRFID Reader/Writer RC522 SPI S50 with RFID Card and Tag
RFID ModuleMFRC522
Operating Frequency13.56 MHz
InterfaceSPI
Supported CardsMIFARE Classic S50 (1K)
Read / WriteYes
Operating Voltage3.3V
Communication DistanceUp to 5 cm
Onboard AntennaYes
Included AccessoriesRFID Card & Keychain Tag
CompatibilityArduino, ESP32, Raspberry Pi
ApplicationAccess Control, Attendance Systems, NFC Projects

Customer Reviews