Ashu Mhr Technical
Published

Smart Door Lock

This is a Smart Door Lock System which uses Arduino Bluetooth And A Smartphone Application as a Fingerprint Authenticator.

IntermediateFull instructions provided3 hours185
Smart Door Lock

Things used in this project

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Custom parts and enclosures

Custom Designed Box

Schematics

Gerber File

Code

code

C/C++
void setup() {
  Serial.begin(9600);
  pinMode(5,OUTPUT);

}

void loop() {
  if(Serial.available()>0)
  {
    char data = Serial.read();
    if (data == 'f')
    {
      digitalWrite(5,HIGH);
delay(4000);
digitalWrite(5,LOW);
    }
   
      
    }
  }

Credits

Ashu Mhr Technical

Ashu Mhr Technical

13 projects • 2 followers

Comments