Close
0%
0%

Windows PC Lock/Unlock Using RFID.

No more hassles of unlocking your computer. Unlock your Windows PC with just a flick of an RFID card/tag.

Similar projects worth following
In this project I'll be explaining how i made a simple RFID system that can lock/unlock my windows computer with just a flick of an RFID card/tag. With this system in place no more hassles of unlocking the Laptop/PC every-time it gets locked down.

Hi there!

How often have you felt tired of typing in the password to unlock your PC/laptop every time it got locked? I'm used to locking it down quite a number of times, everyday, and nothing is more annoying than typing the password/pin over and over again, every-time I want to unlock it. When the need for something becomes essential, you are forced to find ways of getting it. As the saying goes, "necessity is the mother of invention", the lazy mind in me started to think of an easy and a cheap way to unlock my personal Computer/Laptop every time I had to lock it. As I went through my stuff I found a RC522 RFID module. That's when I decided to make an RFID system.

RFID: Radio-frequency identification (RFID) is one of the oldest wireless technology. RFID chips are used to store information digitally, which can then be shared between objects through electromagnetic fields and radio waves. It may not be super-advanced, but many makers see real potential in the technology, no matter how old.

Circuit.pdf

PDF file of the circuit diagram.

Adobe Portable Document Format - 581.41 kB - 10/13/2017 at 21:03

Preview
Download

RFID_PC_LOCK_KKSJUNIOR.ino

Arduino code for the RFID system.

ino - 3.91 kB - 10/13/2017 at 21:03

Download

  • 1 × Arduino Micro ATmega32U4 based development board.
  • 1 × MFRC-522 RFID Module Most common RFID Module compatible with Arduino and other common development boards.

  • 1
    Step 1: Materials and Tools Required.

    The heart of this project is the Arduino Pro Micro (or you can use Arduino Leonardo) with the ATmega32U4 chip. It is very important for this project to choose a development board with the ATmega32U4 chip. We can't use development boards like Arduino Uno, Mega 2560, Pro Mini or Arduino Nano for this application. The details are in the following steps.

    Materials required :

    1. Arduino Pro Micro/Arduino Leonardo.
    2. MFRC-522 RFID module with RFID card.
    3. Male and female headers.
    4. Prototype PCB board.
    5. Wires.
    6. 10k ohm resistors - 3

    Tools required :

    1. Soldering kit.
    2. Glue gun.
    3. Wire cutters

    etc:

  • 2
    Step 2: Building the Prototype.

    I recommend you to build a prototype on the breadboard before soldering the circuit to a PCB. This will help you to get a better understanding of the connections and will allow you to fix any of the errors that occurs while linking connections. Building the prototype is not a hefty task considering this project. We've to only make a few connections and we're ready to upload the code. The connections are described below. On the Arduino many of the pins are not changeable. As this device uses the SPI bus, it does not allow switching pins, pins 14, 15 and 16 must remain as shown. RST and SDA are user specified.

    • The RC-522 RFID module is designed for an input voltage of just 3.3 volts. It is a very sensitive device, so any higher values may overheat and damage the module. The VCC out of Arduino Pro Micro will give you a 5 volts supply. Make a voltage divider as shown in the circuit diagram (or use a 5 V to 3.3 V step down module) to make a 3.3 volts supply voltage. Connect the 3.3 V supply to the VCC of RFID module.
    • RST to pin 5 of Arduino. (You can change this pin in the code.)
    • Connect the GND pin to the ground.
    • IRQ pin - Not Connected.
    • MISO to pin 14 of Arduino.
    • MOSI to pin 16 of Arduino.
    • SCK to pin 15 of Arduino.
    • SDA to pin 10 of Arduino. (This is also a user defined pin.)

    That's all it is!, Simple and easy. Just plug the cable and we're ready to upload the code and test the device.

  • 3
    The Code.

    The Arduino Leonardo/Micro with the ATmega32u4 chip has a built-in USB communication. This allows the Leonardo/Micro to appear to a connected computer as a mouse or a keyboard.

    We use the keyboard.h core library to make the arduino send the keystrokes to a connected computer.

    The working of the code is very simple.

    • The UID of your RFID card/tag and your windows password/PIN is stored in the code.
    • When the right card is shown to the RFID reader, the arduino will send keystrokes for locking the windows and your password for unlocking the windows simultaneously.
    • If the windows is in a locked state, the keystrokes for locking it won't have any effect and the command will unlock the locked computer.
    • Or else if the windows is already unlocked, the commands will lock it. (The unlock code is also coming simultaneously, but as there is only a pinch of a delay between the lock and unlock keystrokes, Windows goes into executing the lock command and will not read the unlock code command coming at that time.)

    You have to make some small changes in the code I've provided to explore and use it for yourself.

    • Connect the prototype to the computer.
    • Launch the Arduino IDE and open the code I've given here.
    • From the toolbar go to tools -> Board and Select Arduino Leonardo for both Arduino Pro micro and Arduino Leonardo.
    • Check whether the COM port is selected.
    • Upload the code to the arduino.
    • Open the Serial Monitor ( Ctrl+Shift+M).
    • Scan your Card/tag.
    • The first line of the output shown in the serial monitor is the UID of your card/tag. Note down this value.
    • Go to the last part of the code and you'll find a line which says "Keyboard.print("PASSWORD");" (Line number 80 in the code.). Change this value to your windows unlock code.
    • Now go back to the code editor and change the value of string "card1" to the UID you've just noted (In my code, you can find it in line 41).
    • Go to the last part of the code and you'll find a line which says "Keyboard.print("PASSWORD");" (Line number 80 in the code.). Change this value to your windows unlock code.
    • This is a basic code for typing passwords in your computer using RFID tags. You can modify the code to add more cards/tags and set different passwords for each card for various applications.
    • Now upload the modified code into the arduino.
    • Scan the card/tag to test the prototype.

View all 7 instructions

Enjoy this project?

Share

Discussions

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates