Skip to Content

Arduino New (Improved) RFID Starter Kit Uno

The New (Improved) Arduino RFID Kit is designed with beginners in mind, offering a perfect introduction to the world of Arduino, coding, and electronics. This comprehensive kit not only provides all the necessary components for exciting projects but also offers an intriguing journey into understanding the various facets of electricity. This Arduino RFID Kit stands out by focusing on Wireless RFID and NFC (Near Field Communication) communications. It equips you with a full complement of sensors, modules, connectors, cables, and, of course, RFID technology.

Package Includes:

Component Quantity
UNO R3 board 1
BreadBoard shield 1
RFID Module 1
Keychain IC 1
Contactless Type IC Card 1
1602 LCD module 1
5V Relay 1
DS1302 Clock Module 1
Voice Detection Module 1
Temperature humidity sensor module 1
Fluid Level detection module 1
4*4 keypad module 1
XY Joystick 1
Servo 1
Stepper motor driver Board 1
Blue LED 5
Yellow LED 5
Red LED 5
1 K Resistor 5
10 K Ohm Resistor 5
220 Ohm Resistor 8
Buzzer 2
Hat for momentary buttons 4
Photoresistor 3
Infrared receiver 1
Adjustable potentiometer 1
Digital control 1
4 digital tube 1
8 * 8 dot-matrix Memory 1
74HC595 N chips 1
IR remote control 1
Breadboard Jumper * 30 1
Male to Female Dupont lines * 30 1
USB cable 1
Real-time clock 1
 
176.00 AED 176.00 AED Tax Included
176.00 AED Tax Included

Not Available For Sale

This combination does not exist.

Terms and Conditions
30-day money-back guarantee
Shipping: 2-3 Business Days


Connecting the RC522 RFID Module:

The RC522 RFID Module is a vital part of this kit. Here's how to connect it to your Arduino:

  1. Connect the VCC pin on the RC522 module to the 3.3V pin on the Arduino.
  2. Connect the GND pin on the RC522 module to the ground (GND) pin on the Arduino.
  3. Connect the RST pin on the RC522 module to any digital pin on the Arduino (e.g., digital pin #5 in this example).
  4. Leave the IRQ pin on the RC522 module unconnected, as the Arduino library used does not support it.

For Arduino UNO/Nano V3.0:

  • SCK: Digital pin 13
  • MISO: Digital pin 12
  • MOSI: Digital pin 11
  • SS: Digital pin 10

Once you've made these connections, you're ready to go!

Using Arduino to Read RFID Tags:

To interact with the RC522 RFID module, we recommend using the MFRC522 library, which simplifies reading from and writing to RFID tags. Follow these steps:

  1. Download and install the MFRC522 library:
    1. Open the Arduino IDE.
    2. Go to the "Sketch" menu, choose "Include Library" > "Manage Libraries..."
    3. Search for "MFRC522" in the Library Manager.
    4. Click "Install" next to the MFRC522 library.
    5. Wait for installation to complete.
    6. Confirmation message: "Library MFRC522 installed"
  2. Open the Examples submenu and select MFRC522 > DumpInfo example sketch.
  3. Ensure that the RST_PIN is correctly initialized (e.g., digital pin #5).
  4. Upload the sketch to the Arduino board and open the Serial Monitor.
  5. Bring the RFID tag closer to the RC522 module, and you'll see tag information displayed in the Serial Monitor.

Note: Ensure the tag remains stationary until all information is fully displayed.