HeathenHacks
Published © GPL3+

Pseudo Two-Factor Authentication Using HC-05, RFID + Relay!

Add another level of security to your RFID reader (aka Arduino Project #2 Revamp) + custom app.

IntermediateFull instructions provided4,850
Pseudo Two-Factor Authentication Using HC-05, RFID + Relay!

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
RFID Module (Generic)
MFRC522 RFID Module
×1
HC-05 Bluetooth Module
HC-05 Bluetooth Module
×1
Relay (generic)
5v 10a Relay Module
×1
General Purpose Transistor NPN
General Purpose Transistor NPN
2N3904
×1
Resistor 10k ohm
Resistor 10k ohm
×1
Resistor 2.21k ohm
Resistor 2.21k ohm
×1
Resistor 1k ohm
Resistor 1k ohm
×1
Resistor 221 ohm
Resistor 221 ohm
×1
Breadboard (generic)
Breadboard (generic)
×1
Jumper wires (generic)
Jumper wires (generic)
A lot
×1
Male/Female Jumper Wires
Male/Female Jumper Wires
A lot
×1

Software apps and online services

Arduino IDE
Arduino IDE
MIT App Inventor 2
MIT App Inventor 2

Story

Read more

Schematics

LED ON & OFF SCHEMATIC

AT COMMANDS [PASSWORD CHANGE] SCHEMATIC

RFID + HC-05 + RELAY SCHEMATIC

MFRC522 RFID Library by Mr. Miguel Balboa

Code

LED ON & OFF CODE

Arduino
int BLU;

int led = 8;// add the pin number that you want to control.

void setup()

{

  Serial.begin(9600);

  pinMode(led, OUTPUT);

}

void loop() {

  while (Serial.available()) {

    BLU = Serial.read();

    Serial.println(BLU);
    {
      if (BLU == 1)

        digitalWrite(led, HIGH);
    }

    {
      if (BLU == 0)

        digitalWrite(led, LOW);
    }

  }

}

RFID + RELAY CODE

Arduino
/*
 * ----------------------------------------------------------------------------
 * This sketch uses the MFRC522 library ; see https://github.com/miguelbalboa/rfid
 * for further details and other examples.
 * 
 * NOTE: The library file MFRC522.h has a lot of useful info. Please read it.
 * 
 * This sketch show a simple locking mechanism using the RC522 RFID module.
 * ----------------------------------------------------------------------------
 * Typical pin layout used:
 * -----------------------------------------------------------------------------------------
 *             MFRC522      Arduino       Arduino   Arduino    Arduino          Arduino
 *             Reader/PCD   Uno           Mega      Nano v3    Leonardo/Micro   Pro Micro
 * Signal      Pin          Pin           Pin       Pin        Pin              Pin
 * -----------------------------------------------------------------------------------------
 * RST/Reset   RST          9             5         D9         RESET/ICSP-5     RST
 * SPI SS      SDA(SS)      10            53        D10        10               10
 * SPI MOSI    MOSI         11 / ICSP-4   51        D11        ICSP-4           16
 * SPI MISO    MISO         12 / ICSP-1   50        D12        ICSP-1           14
 * SPI SCK     SCK          13 / ICSP-3   52        D13        ICSP-3           15
 *
 */
#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.

String read_rfid;                   // Add how many you need and don't forget to include the UID.
String ok_rfid_1="e199312d";        // This is for my main RFID Card. aka. The one I will be using to turn on my PC. Can also be used to shut it down if you want to.
String ok_rfid_2="fbecb673";        // This is for the RFID Keyfob. aka. Shutdown Keyfob. Not advisable tho. Just shutdown your PC normally.
int lock = 7;                       // For the Card.
int lock2 = 7;                      // For the Keyfob.
/*
 * Initialize.
 */
void setup() {
    Serial.begin(9600);         // Initialize serial communications with the PC
    while (!Serial);            // Do nothing if no serial port is opened (added for Arduinos based on ATMEGA32U4)
    SPI.begin();                // Init SPI bus
    mfrc522.PCD_Init();         // Init MFRC522 card

    //Choose which lock below:
    pinMode(lock, OUTPUT);
    pinMode(lock2, OUTPUT);
}
/*
 * Helper routine to dump a byte array as hex values to Serial.
 */
void dump_byte_array(byte *buffer, byte bufferSize) {
    read_rfid="";
    for (byte i = 0; i < bufferSize; i++) {
        read_rfid=read_rfid + String(buffer[i], HEX);
    }
}

void open_lock() {
  //Use this routine when working with Relays and Solenoids etc.
  digitalWrite(lock,HIGH);
  delay(500);
  digitalWrite(lock,LOW);
}


void close_lock2() {          // You can also just use the card to shutdown your PC. This is just for those moments that you really need to shut it down quickly. 
  //Use this routine when working with Relays and Solenoids etc.
  digitalWrite(lock2, HIGH);
  delay(5000);                
  digitalWrite(lock2,LOW);
}


void loop() {

      // Look for new cards
    if ( ! mfrc522.PICC_IsNewCardPresent())
        return;

    // Select one of the cards
    if ( ! mfrc522.PICC_ReadCardSerial())
        return;

    dump_byte_array(mfrc522.uid.uidByte, mfrc522.uid.size);
    Serial.println(read_rfid);
    if (read_rfid==ok_rfid_1) {
      //ok, open the door.
      open_lock();
    }

    Serial.println(read_rfid);
    if (read_rfid==ok_rfid_2) {
      //ok, open the door.
      close_lock2();
    }
    //Add below as many "keys" as you want
    //if (read_rfid==ok_rfid_2) {
      //also ok, open the door
    //  open_lock();
    //}
    // else not needed. Anything else is not ok, and will not open the door...
}

RFID + HC-05 + RELAY CODE

Arduino
/*
   ----------------------------------------------------------------------------
   This sketch uses the MFRC522 library ; see https://github.com/miguelbalboa/rfid
   for further details and other examples.

   NOTE: The library file MFRC522.h has a lot of useful info. Please read it.

   This sketch show a simple locking mechanism using the RC522 RFID module.
   ----------------------------------------------------------------------------
   Typical pin layout used:
   -----------------------------------------------------------------------------------------
               MFRC522      Arduino       Arduino   Arduino    Arduino          Arduino
               Reader/PCD   Uno           Mega      Nano v3    Leonardo/Micro   Pro Micro
   Signal      Pin          Pin           Pin       Pin        Pin              Pin
   -----------------------------------------------------------------------------------------
   RST/Reset   RST          9             5         D9         RESET/ICSP-5     RST
   SPI SS      SDA(SS)      10            53        D10        10               10
   SPI MOSI    MOSI         11 / ICSP-4   51        D11        ICSP-4           16
   SPI MISO    MISO         12 / ICSP-1   50        D12        ICSP-1           14
   SPI SCK     SCK          13 / ICSP-3   52        D13        ICSP-3           15

*/

#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.

String read_rfid;                   // Add how many you need and don't forget to include the UID.
String ok_rfid_1 = "e199312d";      // This is for my main RFID Card. aka. The one I will be using to turn on my PC. Can also be used to shut it down if you want to.
String ok_rfid_2 = "fbecb673";      // This is for the RFID Keyfob. aka. Shutdown Keyfob. Not advisable tho. Just shutdown your PC normally.
int switch1 = 7;                    // For the Card.
int switch2 = 7;                    // For the Keyfob.
int BlueCom;                        // Bluetooth Command.
int Thing = 8;                      // Pin number where the Thing is connected.

void setup() {

  Serial.begin(9600);               // Initialize serial communications with the PC
  while (!Serial);                  // Do nothing if no serial port is opened (added for Arduinos based on ATMEGA32U4)
  SPI.begin();                      // Init SPI bus
  pinMode(Thing, OUTPUT);           // Set Thing Pin as OUTPUT.
  pinMode(switch1, OUTPUT);         // RFID Card to turn ON PC.
  pinMode(switch2, OUTPUT);         // KeyFob to shut it down.


}
/*
   Helper routine to dump a byte array as hex values to Serial.
*/
void dump_byte_array(byte *buffer, byte bufferSize) {
  read_rfid = "";
  for (byte i = 0; i < bufferSize; i++) {
    read_rfid = read_rfid + String(buffer[i], HEX);
  }
}

void On_Switch() {                  // Use this routine when working with Relays and Solenoids etc.
  digitalWrite(switch1, HIGH);
  delay(1000);
  digitalWrite(switch1, LOW);
}

void Off_Switch() {                // You can also just use the card to shutdown your PC. This is just for those moments that you really need to shut it down quickly.
  digitalWrite(switch2, HIGH);     // Use this routine when working with Relays and Solenoids etc.
  delay(5000);
  digitalWrite(switch2, LOW);
}

void BlueOn() {

  digitalWrite(Thing, HIGH);
  mfrc522.PCD_Init();
}

void BlueOff() {

  digitalWrite(Thing, LOW);
  mfrc522.PCD_Reset();
}

void loop() {

  while (Serial.available()) {
    BlueCom = Serial.read();
    Serial.println(BlueCom);
    {

      if (BlueCom == 1)
        BlueOn();
    }
    {

      if (BlueCom == 0)
        BlueOff();
    }
  }

  // Look for new cards
  if (!mfrc522.PICC_IsNewCardPresent())
    return;

  // Select one of the cards
  if (!mfrc522.PICC_ReadCardSerial())
    return;
  dump_byte_array(mfrc522.uid.uidByte, mfrc522.uid.size);

  Serial.println(read_rfid);
  if (read_rfid == ok_rfid_1) { //ok, turn ON PC.
    digitalWrite(switch1, HIGH);
    delay(1000);
    digitalWrite(switch1, LOW);
  }
  Serial.println(read_rfid);
  if (read_rfid == ok_rfid_2) { //ok, turn OFF PC.
    digitalWrite(switch2, HIGH);
    delay(5000);
    digitalWrite(switch2, LOW);
  }
}

Credits

HeathenHacks

HeathenHacks

24 projects • 57 followers
I don't know what I'm doing here.

Comments