RFID Door Lock With Arduino

Here we are with the classic RFID door lock. It’s classic in that whole, “We live in the future and take it for granted at this point” sense. In this tutorial, we will set up a door latch that can be opened with the swipe of an RFID Tag! We will program a list of acceptable ‘key’ cards that will unlatch the door for a specified amount of time. This is a really simple project, but it does require that you alter your door jamb, so be prepared to do some wood work if you the strike plate to fit securely and flush.

Step 1: Project Parts List

These are the recommended parts for this project. You can use another Arduino variant, relay, or compatible RFID Tag, but we recommend using the RFIDuino Shield so that the code we will provide you in this tutorial works without a hitch.

Note that using a straight door latch solenoid requires power to unlock the door. If you lose power, you will be effectively locked out and unable to open your door until power is returned to the system. With the electronic strike plate, you can still use your regular key to open the door in the case of a power outage. Choose wisely.

Step 2: Get Your RFID Tag Data

  1. Connect your RFIDuino as shown. (Click here for the v1.1 Connection Diagram)
  2. Open RFIDuino_helloworld onto your board. You can find this sketch underFile>Examples>RFIDuino>RFIDuino_helloworld
  3. You will need to make sure the code is adjusted for your RFIduino hardware.
    v1.2 shields (2 pin antenna, ‘REV 1.2’ printed on the board) will need the following codeRFIDuino myRFIDuino(1.2); //initialize an RFIDuino object for hardware version 1.2v1.1 shields (4-pin antenna, no version number printed on the board) will need the following codeRFIDuino myRFIDuino(1.1); //initialize an RFIDuino object for hardware version 1.1Both lines of code are available in the RFIDuino_helloworld sketch, simply uncomment the one you don’t need.If you are still unsure about what hardware you are using, see this page
  4. Connect a micro USB cable from your computer to your Geekduino
  5. Load RFIDuino_helloworld3 onto your board using the upload button in the Arduino IDE.
  6. Once loaded, you can leave your board connected to your computer – you will need this connection to power the board and to communicate with the computer
  7. Open the Serial Monitor.Tools -> Serial MonitorThe serial monitor should be set to its default settings (‘No Line ending’, 9600 baud)
  8. Swipe a tag across the RFIDuino antenna. The green light will light up and your buzzer will make a noise.
  9. The Serial Monitor will display 5 numbers. These numbers make up the ID of your tag.
  10. Copy down these numbers for future use. It can be handy to write the ID on a sticky note and attach it to the tag. NOTE: You will need the ID for at least one tag for the next step.

Step 3: Wiring and Programming

  1. Connect your components as shown here.
  2. Open RFIDuino_demo3_lockbox_multi onto your board. You can find this sketch underFile>Examples>RFIDuino>RFIDuino_demo3_lockbox_multi
  3. You will need to make sure the code is adjusted for your RFIduino hardware.
    v1.2 shields (2 pin antenna, ‘REV 1.2’ printed on the board) will need the following codeRFIDuino myRFIDuino(1.2); //initialize an RFIDuino object for hardware version 1.2v1.1 shields (4-pin antenna, no version number printed on the board) will need the following codeRFIDuino myRFIDuino(1.1); //initialize an RFIDuino object for hardware version 1.1Both lines of code are available in the RFIDuino_demo3_lockbox_multi sketch, simply uncomment the one you don’t need.If you are still unsure about what hardware you are using, see this page. The RFID Experimenter’s Kit comes with the version 1.2 shield.
  4. Modify the code for the number of cards you want by editing line 58. For example, if you have three cards, use the code#define NUMBER_OF_CARDS 3 //total numer of key cards that the system will respond to.
  5. You will also need to modify the sketch to include the IDs of the tags that you want to include. These IDs can be found using the Hello World sketch. Find the block of code starting at line 62 – it looks like this.byte keyTag[NUMBER_OF_CARDS][5] ={ {0,0,0,0,0}, //Tag 1 //commenting each tag with a description can help you keep track of them {0,0,0,0,0}, //Tag 2 {0,0,0,0,0}, //Tag 3 {0,0,0,0,0},//Tag 4 }; Now insert the IDs for your tags. If we had three key tags, our code might look something likebyte keyTag[NUMBER_OF_CARDS][5] ={ {77,0,44,22,242}, //Tag 1 //commenting each tag with a description can help you keep track of them {200,1,4,98,236}, //Tag 2 {23,64,4,25,1}, //Tag 3 };
  6. Connect a micro USB cable from your computer to your Geekduino
  7. Load RFIDuino_demo3_lockbox_multi onto your board using the upload button int the Arduino IDE.
  8. Once loaded, you disconnect the USB cable from your computer..
  9. Swipe any of the ‘key’ tags across the RFIDuino antenna. The green light will light up and your buzzer play three different notes. Additionally, the solenoid will fire.
  10. Swipe any tag that is not the ‘key’ tag across the RFIDuino antenna. The red light will light up and your buzzer play three monotone notes. The solenoid will not react.

Step 4: Mount It Where You Can Use It

https://youtu.be/soNDYea5VJg

Once you’re sure that you have it programmed and the latch releases when you swipe the correct RFID Tag, mount it in your door frame. We had a metal frame door with glass windows, so it was an easy call putting the RFID Reader behind the glass. You may want to mount the antenna in a weatherproof box for accessibility and keep the ~duino and other electronics indoors for safety.

There are instructions with the strike plate that should help you mount that. We recommend keeping the plate as flush as you can to the wall it’s mounted to, and to be careful when running wires through a wall.

Step 5: You’re Done!

That was fun! So now that you have an arduino that can let you into your home, what are you going to do next? You could add a keypad for code entry, that’d be pretty cool. What about integrating bluetooth, so you can unlock your door with your phone? There are loads of features you can add, and we’d love to see what you come up with!

Source: RFID Door Lock With Arduino


About The Author

Muhammad Bilal

I am a highly skilled and motivated individual with a Master's degree in Computer Science. I have extensive experience in technical writing and a deep understanding of SEO practices.

Scroll to Top