Keyfob Deadbolt

75K38649

Intro: Keyfob Deadbolt


The key to my apartment never worked quite right because it is a copy of a copy of a copy. I am fairly certain that the dead bolt is original to the building and the property manager seems to have lost the original key years ago. As a result unlocking the door was always a pain. Changing the lock wasn't an option, but eliminating the need to use a key was.

Parts:
Arduino Uno
RF transmitter and receiver
Servo
2 Push Button Switches
Red LED
Green LED
Various Resistors
piezoelectric speaker
Perf Board

STEP 1: Mounting Parts

I used a couple of pieces of acrylic that I acquired in the dumpster of the plastic shop next to my place of work (they throw out alot of small pieces like this). Alternatively another material could be used if you don't have access to acrylic, but it is easy to work with and looks cool.

Using a piece of paper trace the mounting holes for your dead bolt and transfer them onto your acrylic sheet. Since most dead bolts are going to be slightly different I am not sharing the template I made out of a piece of paper (mainly because it isn't anything worth sharing).

Leave the paper covering on while working with the acrylic. The paper makes it easy to mark where to cut/drill as well as protects the material from scratches. Once all of your cuts are made and your holes are drilled you can start installing components such as LEDs and switches.

STEP 2: Servo

I used an old parallax servo I had in my parts bin. This small servo is more than strong enough to turn the deadbolt. In order to attach the servo to the lock shaft I used epoxy putty. Epoxy putty is very easy to use and is extremely versatile. The wire you see sticking out of the putty will be used as the arm for the limit switch.

At some point the wires to my servo had been cut so I had to open the case and solder on new ones. I took that opportunity to solder on a second wire to the 5v line and connected it to the limit switch arm.

STEP 3: Wiring

Screws were countersunk from the back of the acrylic. A wire was attached to each screw and then to a digital pin on the Arduino. When the wiper with the 5v wire touches the screw it pulls the digital pin high on the Arduino. Please see the schematic for further details.

STEP 4: Program

Disclaimer: I am not a programmer and therefore the below code may not be the most efficient. Feel free to improve the code for your own uses if you see any errors or problems. It works for me so I hope it works for you.


// turn CW to lock and CCW to unlock
//1700 CCW; 1500 Stop; 1300 CW
//written by Chris Rybitski
#include <Servo.h>



Servo deadbolt;  // create servo
const int CWLimit = 6;   // Limit Switch on 6 Unlock
const int CCWLimit = 7;   // Limit Switch on 7 Lock
const int Redbtn = 12; //red push button
const int Blackbtn = 8; //black push button
const int GreenLED = 10; // Green LED
const int RedLED = 11; //Red LED               
const int Ch1 = 5; //rf channel 1
const int Ch2 = 4; //rf channel 2
const int Buzz = 9; //buzzer
int Unlock = 0;
int Lock = 0;
int timer = 0;
boolean UnLcomplete = false;
boolean Lcomplete = false;

void setup()
{

  Serial.begin(9600);

  deadbolt.attach(3);  // attaches the servo
  pinMode(GreenLED, OUTPUT);
  pinMode(RedLED, OUTPUT);
  pinMode(Buzz,OUTPUT);
  pinMode(CWLimit, INPUT);      
  pinMode(CCWLimit, INPUT);
  pinMode(Redbtn, INPUT);
  pinMode(Blackbtn, INPUT);
  pinMode(Ch1, INPUT);
  pinMode(Ch2, INPUT);

  //set LED's and Buzzer to be off by default
  digitalWrite(GreenLED, HIGH);
  digitalWrite(RedLED, HIGH);
  digitalWrite(Buzz, HIGH);
}


void loop()
{
  if (digitalRead(Ch1) == HIGH || digitalRead(Redbtn) == LOW){       //If remote or button is pressed
    if(UnLcomplete == false){          //dont run unlock if door is already unlocked 
    Serial.println("UnLock"); 
    Unlock = 1;}}
  if (digitalRead(Ch2) == HIGH || digitalRead(Blackbtn) == LOW){     //If remote or button is pressed
    if(Lcomplete == false){       //dont run lock if door is already locked 
    Serial.println("Lock"); 
    Lock = 1;}}

//---------------UNLOCK-------------------------
  if (Unlock == 1){
    timer = 0;
      while (digitalRead(CWLimit) == LOW){
          if (timer > 1500){
          digitalWrite(Buzz, LOW);
          delay(500);
          digitalWrite(Buzz, HIGH);  
           }
      else{
           deadbolt.write(1700);
           timer++;
           delay(1);
            }}  
  deadbolt.write(1500);  //servo stop
  digitalWrite(RedLED, LOW);
  digitalWrite(GreenLED, HIGH);
  UnLcomplete = true; //unlock complete
  Lcomplete = false; //reset Lock boolean
  digitalWrite(Buzz, LOW);
  delay(100);
  digitalWrite(Buzz, HIGH);
  Unlock = 0; //reset

  }

  //--------------LOCK----------------------------
    if (Lock == 1){
      timer = 0;
          while (digitalRead(CCWLimit) == LOW){
              if (timer > 1500){
                  digitalWrite(Buzz, LOW);
                  delay(500);
                  digitalWrite(Buzz, HIGH);
                  }
              else{
                  deadbolt.write(1300);
                  timer++;
                  delay(1);
                  }}  
  deadbolt.write(1500); 
  digitalWrite(GreenLED, LOW);
  digitalWrite(RedLED, HIGH);
  Lcomplete = true; //lock complete
  UnLcomplete = false; //reset Lock boolean
  digitalWrite(Buzz, LOW);
  delay(100);
  digitalWrite(Buzz, HIGH);
  delay(50);
  digitalWrite(Buzz, LOW);
  delay(100);
  digitalWrite(Buzz, HIGH);
  Lock = 0; //reset
  }
  }

STEP 5: FInal Thoughts

Currently the unit is powered via the USB port using a cell phone charger. There are plans to wire a separate 5 volt supply that does not require the usb cable extending past the door. Although a key can still be used to unlock the door from the outside I am also planning on adding a battery back up in case of power failure.

49 Comments

The link for the RF transmitter and receiver is broken... any chance you have the module specificaitons?

could you reply with some websites where you got all the parts to make this including the program you used to code the key fob? I know this might be a bit of a nuisance but I'm fairly new to this so it would be really appreciated. :)

Nice instructable! Any new update to this i.e. battery back up, new revisions etc.?
unfortunately there are no updates yet. I am currently working on a cruise ship and won't be home until june.

You made a cruise ship with an Arduino? That sounds awesome ;-)

unfortunately there are no updates yet. I am currently working on a cruise ship and won't be home until june.

Is the servo directly attached to the deadbolt? If so, does this servo have any resistance to manually turning it (like when you use the key to open the door)?

I'm not very familiar with servos. Can you freely turn continuous rotation servos when they are off? I have a standard servo and it is resistant to turning when off.

Do you still work near that plastics place? Can we pay you for shipping to get us some from the trash? Or can we contact them directly?

If anyone is looking for cheap components and parts,go on aliexpress.com, shipping takes a while but it is worth it in the long run

The servo is a parallax continuous rotation servo. Amazon and adafruit both sell them

Can you provide the specifics of the servo? I'm trying to size one in terms of power and torque for my deadbolt knob.

Hello, Wich program you use for this project ? :)

hola amigo me puedes explicar como va conectado todo esque no entiendo hay cosas que no me salen, si pudieras explicarmelo paso a paso te lo agradeceria mucho saludos
hola amigo me puedes explicar mas a detalle como va conectado todo saludos espero tu respuesta
Yes, When the lock is turned manually the locked or unlocked limit will be triggered changing the state.
This is exactly what I came here looking for.

Quick question - what happens if someone does unlock with a key? Does the system still know what state it is in, locked or unlocked?
I'm not too well versed in circuitry but couldn't you use a 9v battery with a 5v regulator on it?
certainly, that isn't the most efficient way to power it, but it would work. I would reserve something like that for a battery back up and power the device from an outlet when possible.
Simply a thought for convienence
The arduino uno, used in this project, is built to run stable on 7-12v, it will run on as low as 5v but may not be able to output the full 5v on the output pins. I can also safely run on as high as 20v but runs the danger of over heating. The arduino has an internal 5v regulator. The reason his works without glitch is because his supply is a constant 5v, a battery can drop below 5v as it runs low and that is why 5v batteries aren't recommended
More Comments