Home
About Us
Achievement
Home
Raspberry-Pi Projects
_Raspberry Pi 4 Complete Guide
Arduino Project
_All Projects
Esp8266 Project
_All Projects
Esp32 Project
_Automation-with-feedback
Fingerprint Door Lock System Using Android App
Just Do Electronics
December 20, 2021
Circuit diagram :-
Code :-
//Prateek //wwww.prateeks.in //https://www.youtube.com/c/JustDoElectronics/videos int value1; #define relay 13 const int buzzer = 7; void setup() { Serial.begin(9600); pinMode(relay, OUTPUT); pinMode(buzzer, OUTPUT); digitalWrite(relay, LOW); } void loop() { Serial.print("Reading"); while(Serial.available()==0); value1 = Serial.read(); Serial.print(value1); if (value1==0) { Serial.print("Unlocking"); digitalWrite(relay, LOW); digitalWrite(buzzer, HIGH); delay(1000); digitalWrite(buzzer, LOW); } if (value1==1) { digitalWrite(relay, HIGH); Serial.print("Locking"); delay(3000); digitalWrite(relay, LOW); } }
GitHub Link :-
Fingerprint Door Lock System
Video :-
0 Comments
Newer
Older
ESP32 Interfacing With LDR Sensor
ESP32 Led Blink With Push Button
Arduino Gps And Gsm Based location Tracking System
How to Make Gas Leak Detector & Auto Exhaust Fan Using Arduino
ESP32 And Fingerprint Sensor Based Biometric Door Lock Security System
Arduino Based Countdown Timer
How To Make RFID & Keypad Based Door Lock
IoT Based Patient Health Monitoring System Using Blynk App
Ultrasonic Sensor as a Counter with Arduino
IoT Based Fingerprint Biometric Attendance System Using NodeMCU (Esp8266)
YouTube
Like on Facebook
Follow on Twitter
Follow on Google+
Follow on Instagram
Subscribe on Youtube
Hi WelCome To My Website If you have a creative mind and want to learn Electronics even without studying it then FRIENDS this Website And Youtube Channel is for you, I am crazy creators who love making Electronics things. I have a bunch of more than 130 Tutorial Videos on My YouTube Channel and I upload a new Tutorial every Sunday.
Tags
Arduino Project
Esp32 Project
Esp8266 Project
0 Comments