Arduino - RFID/NFC Door Lock System
In this tutorial, we are going to learn how to make Arduino RFID/NFC Door Lock System using Arduino, RFID/NFC RC522 Kit, and electromagnetic lock.
※ NOTE THAT:
We also made the door lock system using keypad tutorial.
Hardware Required
1 | × | Arduino UNO or Genuino UNO | |
1 | × | USB 2.0 cable type A/B | |
1 | × | RFID/NFC RC522 Kit (reader + tags) | |
1 | × | Electromagnetic Lock | |
1 | × | Relay | |
1 | × | 12V Power Adapter | |
10 | × | Jumper Wires |
About RFID/NFC RC522 Module and Electromagnetic Lock
If you do not know about RFID/NFC RC522 Module and Electromagnetic Lock (pinout, how it works, how to program ...), learn about them in the following tutorials:
System Components
The door lock system includes two main parts:
- Door Lock: Arduino + RFID/NFC reader + Electromagnetic lock
- Door Key: RFID/NFC tags

There are some types of RFID/NFC readers that can work with Arduino. This tutorial uses RFID-RC522 as an RFID/NFC reader because it is cheap.
How RFID/NFC Door Lock Works
- Some tags that have UIDs set in Arduino code acts as the authorized keys
- User taps an RFID/NFC tag on RFID/NFC reader
- The reader reads UID from the tag.
- Arduino gets the UID from the reader
- Arduino compares the read UID with the predefined UIDs
- If the UID is matched with one of the predefined UIDs, Arduino deactivates the electromagnetic lock to unlock the door.
Wiring Diagram

Image is developed using Fritzing. Click to enlarge image
Arduino Code - Single Key
Quick Steps
Because UID is usually not printed on RFID/NFC tag, The first step we need to do is to find out the tag's UID. This can be done by:
- Copy the above code and open with Arduino IDE
- Click Upload button on Arduino IDE to upload code to Arduino
- Open Serial Monitor
- Tap an RFID/NFC tag on RFID-RC522 module
- Get UID on Serial Monitor
After having UID:
- Update UID in the line 18 of the above code. For example, change byte keytagUID[4] = {0xFF, 0xFF, 0xFF, 0xFF}; TO byte keytagUID[4] = {0x3A, 0xC9, 0x6A, 0xCB};
- Upload the code to Arduino again
- Tap an RFID/NFC tag on RFID-RC522 module
- See output on Serial Monitor
- Check the electromagnetic lock, it should be unlocked
- Tap another RFID/NFC tag on RFID-RC522 module
- See output on Serial Monitor
※ NOTE THAT:
- To make it easy to test, the unlocked time is set to 2 seconds, it should be increased in practical use/demonstration
- It need to install MFRC522 library. See Arduino - RFID/NFC RC522 tutorial
Arduino Code - Multiple Keys
Let's imagine that a room allows the manager and secretary to unlock the door only.
In this case, we need to use two RFID/NFC tag: one for the manager and the other for the secretary. We have to specify the UIDs of two tags in the code
Do the similar steps as the above, and then tap one by one tag on RFID-RC522 module. The result on Serial Monitor looks like below:
You can extend the above code for three, four, or more tags.
Video Tutorial
We are considering to make the video tutorials. If you think the video tutorials are essential, please subscribe to our YouTube channel to give us motivation for making the videos.