Attendance RFID

This is the Arduino driven project where we use the NFC tags to setup the attendance system, to get started with this i shall be providing code for the two file, one for setting up the NFC tags to get the Details of the Tags. this two files are required for successful working of model NOTE: when you just copy and paste the code into the arduino make sure to download the libraries 1. NFC setup #include <SPI.h> #include <MFRC522.h> #define RST_PIN 9 // Configurable, see typical pin layout above #define SS_PIN 10 // Configurable, see typical pin layout above MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 instance void setup() { Serial.begin(9600); ...