dauntless75
Published © GPL3+

Security Keypad

A robust keypad and locking system for all your security needs!

IntermediateShowcase (no instructions)180
Security Keypad

Things used in this project

Hardware components

5 mm LED: Green
5 mm LED: Green
×1
5 mm LED: Red
5 mm LED: Red
×1
Capacitor 100 µF
Capacitor 100 µF
×1
Jumper wires (generic)
Jumper wires (generic)
×1
Arduino UNO
Arduino UNO
×1
SG90 Micro-servo motor
SG90 Micro-servo motor
×1
Parallax 4x4 membrane keypad
×1
Resistor 220 ohm
Resistor 220 ohm
×2
Toggle Switch, Toggle
Toggle Switch, Toggle
×1
9V battery (generic)
9V battery (generic)
×1
Solderless Breadboard Half Size
Solderless Breadboard Half Size
×1
Alligator Clips
Alligator Clips
×1

Software apps and online services

Arduino Web Editor
Arduino Web Editor

Hand tools and fabrication machines

Hot glue gun (generic)
Hot glue gun (generic)
Tape, Duct
Tape, Duct

Story

Read more

Schematics

Schematics

Code

Security Pad Code

Arduino
Feel free to modify the pins as you see fit.
// Servo - Version: Latest 
#include <Servo.h>

// Keypad - Version: Latest
#include <Keypad.h>

#define servoPin 10
#define greenPin 11
#define redPin 12
#define length 6
//macros

const byte ROWS = 4; //four rows
const byte COLS = 4; //four columns
//define the cymbols on the buttons of the keypads
char hexaKeys[ROWS][COLS] = {
  {'1','2','3','A'},
  {'4','5','6','B'},
  {'7','8','9','C'},
  {'*','0','#','D'}
};
byte rowPins[ROWS] = {9, 8, 7, 6}; //connect to the row pinouts of the keypad
byte colPins[COLS] = {5, 4, 3, 2}; //connect to the column pinouts of the keypad

char Input[length + 1]; // to avoid artifacts in while loop
char Key; //Key input by user
String ans = "#237AA"; // answer code
String master; // conversion input to string 
int pos = 0; // count in loop 

//initialize an instance of class Keypad
Keypad INKeypad = Keypad(makeKeymap(hexaKeys), rowPins, colPins, ROWS, COLS); 
//initialize a servo
Servo myservo;

void setup(){
  Serial.begin(9600);
  //Monitor
  
  pinMode(greenPin, OUTPUT);
  pinMode(redPin, OUTPUT);
  digitalWrite(greenPin, LOW);
  digitalWrite(redPin, HIGH);
  //LED pins setup
  
  myservo.attach(servoPin);
  myservo.write(0);
  //Servo motor setup
}
  
void loop(){

while(pos < length && Key != '*') {
    Key = INKeypad.getKey();
    //get Key address
    if(Key) {
      Input[pos] = Key;
      Serial.println(Key);
      Input[pos] = Key;
      pos++;
      delay(10);
      //add user input into character array
  }
}
for(int a = 0; a < length; a++) {
  master.concat(Input[a]);
  Serial.println(master);
  //convert into string
}
  if(master == ans && Key != '*') {
    digitalWrite(redPin, LOW);
    digitalWrite(greenPin, HIGH);
    myservo.write(85);
    delay(3000);
    //correct password and unlocked
}
else {
  for(int i = 0; i < 6; i++) {
    digitalWrite(redPin, LOW);
    delay(250);
    digitalWrite(redPin, HIGH);
    delay(250);
    myservo.write(0); 
    //flash: wrong answer and locked

Credits

dauntless75
0 projects • 0 followers
Contact

Comments

Please log in or sign up to comment.