Тёмный

Simple RFID control servo motor for smart door lock system using arduino 

The Breakout Trader AKASH
Подписаться 138 тыс.
Просмотров 82 тыс.
50% 1

Hello everyone,
In this video I will show you how you can make a simple RFID home security system for you door lock
Components required...(affiliate link present)
1. Arduino uno....amzn.to/2NzapDr
2. RFID ...............amzn.to/2L3KlNG
3. Servo motor ...............amzn.to/2LbR6gG
4. Jumper wires ...............amzn.to/2Nsd7uc
5. Breadboard (optional) ...............amzn.to/2KTWPJ3
6. Led
7. Buzzer
RFID Library
drive.google.c...
Code
drive.google.c...
Thanks for watching

Опубликовано:

 

15 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 91   
@nazarenofranco7923
@nazarenofranco7923 2 года назад
A pesar de que parezca tanto cablerio es realmente sencillo, lo arme en unos cuantos minutos. Excelente video!
@rayapudihindusri7248
@rayapudihindusri7248 5 месяцев назад
#include #include #include #define SS_PIN 10 #define RST_PIN 9 #define SERVO_PIN 8 // Define the servo pin MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 instance. Servo myServo; // Create servo object to control the SG90 void setup() { pinMode(7, OUTPUT); pinMode(6, OUTPUT); myServo.attach(SERVO_PIN); // Attach the servo on pin 8 to the servo object Serial.begin(9600); // Initiate a serial communication SPI.begin(); // Initiate SPI bus mfrc522.PCD_Init(); // Initiate MFRC522 Serial.println("Approximate your card to the reader..."); Serial.println(); } void loop() { // Look for new cards if ( ! mfrc522.PICC_IsNewCardPresent()) { return; } // Select one of the cards if ( ! mfrc522.PICC_ReadCardSerial()) { return; } //Show UID on serial monitor Serial.print("UID tag :"); String content= ""; byte letter; for (byte i = 0; i < mfrc522.uid.size; i++) { Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " "); Serial.print(mfrc522.uid.uidByte[i], HEX); content.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " ")); content.concat(String(mfrc522.uid.uidByte[i], HEX)); } Serial.println(); Serial.print("Message : "); content.toUpperCase(); if (content.substring(1) == "B3 05 D4 11") //change here the UID of the card/cards that you want to give access { Serial.println("Authorized access"); Serial.println(); digitalWrite(6, HIGH); delay(200); digitalWrite(6, LOW); myServo.write(180); // Rotate the servo to 180 degrees delay(3000); // Wait for 3 seconds myServo.write(0); // Rotate the servo back to 0 degrees } else { Serial.println(" Access denied"); Serial.println(); digitalWrite(7, HIGH); delay(200); digitalWrite(7, LOW); } }
@martinaaranguiz7037
@martinaaranguiz7037 Месяц назад
Gracias
@pault4711
@pault4711 3 года назад
Thank you very much for this video. My project works now. I appreciate it. Great video.
@akmrasyid977
@akmrasyid977 2 года назад
can i get the code fo this project
@pedrzej
@pedrzej 11 месяцев назад
@@akmrasyid977 check description
@chubielester3916
@chubielester3916 2 года назад
Thank you so much Love from PH dude you did well and my project works... 🔥
@aniruddhsingh3907
@aniruddhsingh3907 4 года назад
thanks yyar bhai aur bhi nayi video banatai raho its my school project and i got 1 position thanks once again
@pritammondal9777
@pritammondal9777 5 лет назад
Sir your video is osm...to good.......👨🏼‍🔧 I Am your Big fain....
@TheBreakoutTraderAKASH
@TheBreakoutTraderAKASH 5 лет назад
kbe clg jabi ?
@pritammondal9777
@pritammondal9777 5 лет назад
Tik nai....
@amitabheer
@amitabheer 5 лет назад
Superliked!!! I would like to thank you for your informative video. You illustrated all that therein and I could build my security access in less than an hour. I want to add a LCD display to show few information as under: 1."Authorized" message with Name (attached to Card ID) on Successful login 2."You are not authorized" message on wrong cards 3."Use your card" on Idle mode 4.Other messages related to Card Hope to get reply from you asap. I appreciate your time and efforts.Keep it up!
@dilshaddil9294
@dilshaddil9294 Год назад
Thanks a lot brother..................its very useful
@abbhinavshinde5603
@abbhinavshinde5603 3 года назад
Thank you bro it worked for me
@binairwanda1042
@binairwanda1042 4 года назад
I have been try this , it's work. Thank you very much
@emulatorgaming83
@emulatorgaming83 2 года назад
Thanks for the best video
@ELECTRICIANMONTUMASTER
@ELECTRICIANMONTUMASTER 4 года назад
Excellent work bro keep it up 😘
@asep4506
@asep4506 11 месяцев назад
Makasih banget codingannya buat kerjain tugas
@tygrisek38
@tygrisek38 2 года назад
its very very helpfull
@paulorobertoribeiro1017
@paulorobertoribeiro1017 5 месяцев назад
LEGAL!
@luzdollylopezguerra906
@luzdollylopezguerra906 Месяц назад
Buen día. En este proyecto el servo no funciona. Sólo funciona un led y el buzer.
@tfmg8223
@tfmg8223 4 года назад
What’s the music? 5:27 Bty very nice video!
@tfmg8223
@tfmg8223 2 года назад
1 year and I'm still watching this awesome video! I need that song!!! 5:27 !!
@ajaykalsi6007
@ajaykalsi6007 4 года назад
Worked amazing video
@bczin61
@bczin61 5 месяцев назад
Why I can’t used with battery 9v or 12v ? Please tell me how should I do ❤
@MsLuis735
@MsLuis735 4 года назад
How can I make the circuit open with both cards?
@pragatigharat5694
@pragatigharat5694 5 лет назад
Sooo good
@andriharii
@andriharii 2 года назад
bro, why my arduino IDE cant detect the rfid cant connect When I execute it, I get the message: Firmware Version: 0x0 = (unknown) WARNING: Communication failure, is the MFRC522 properly connected? Scan PICC to see UID, SAK, type, and data blocks... I have re-checked the connections a thousand time but it's not working, the pins are connected as the example says to, and the LED D1 is on (red). Do you can help me?
@sjgaming8890
@sjgaming8890 Год назад
it was same problem with me just prperly solder the pins of rfid rc522
@fnjulestr3254
@fnjulestr3254 4 года назад
sağol
@thiagogabilan9674
@thiagogabilan9674 4 месяца назад
Thanks
@dannyvivas2072
@dannyvivas2072 3 года назад
Excelente gracias mi hermano
@ATLTraveler
@ATLTraveler 4 года назад
That servo motor probably isnt strong enough to throw a deadbolt. Any lock that could be thrown by that tiny servo could be ripped off so easily, but it's a cool theoretical project.
@rainermatthew4676
@rainermatthew4676 4 года назад
cool it worked thanks
@electronichacks614
@electronichacks614 2 года назад
Sir can I use this coding for arduino uno R3 in mobile phone in arduino Droid app please fast reply I am making this for my school submission 🙏🙏🙏
@Oualid-be6zm
@Oualid-be6zm 4 года назад
It's working thank u
@aiyunfangxiao1269
@aiyunfangxiao1269 4 года назад
Bro, rfid is it soldered the attachment to breadboard?
@Commenter1-w3x
@Commenter1-w3x 2 месяца назад
@@aiyunfangxiao1269 no' it's used by a solderless breadboard
@leonardcainguitan7863
@leonardcainguitan7863 5 лет назад
Good day sir. Did you try already 2 rfid at thesame time
@TheBreakoutTraderAKASH
@TheBreakoutTraderAKASH 5 лет назад
One by one.. at that time
@aiyunfangxiao1269
@aiyunfangxiao1269 4 года назад
@@TheBreakoutTraderAKASH bro, is that rfid soldered? The attachment to breadboard with rfid
@felconero8094
@felconero8094 4 года назад
How about by using wemos d1? When i touch the card to the sensor, both led will off and after that both led are on at the same time. Can you help me to fixed it. ASAP thank you
@arceditor333
@arceditor333 4 года назад
Give direct link for code and circuit diagram
@memorski7362
@memorski7362 10 месяцев назад
why, when im using this two types of cards, all of them showing that the card is correct
@Pratapsingh33
@Pratapsingh33 5 лет назад
Room k andar too rfid tag use Nahi Kar sakte Bhar aane k liye too kese Bhar nikle ga koi
@Assassxndev
@Assassxndev 5 лет назад
can you make a security system with akeypad and rfid
@TheBackbenchersdiy
@TheBackbenchersdiy 5 лет назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-JVHI0iauI78.html or ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-5XhTMbJGrFo.html
@ATLTraveler
@ATLTraveler 4 года назад
Yes of course, you can do anything you want.
@arceditor333
@arceditor333 4 года назад
Any ways it's nice bro😘
@marcweighing5826
@marcweighing5826 4 года назад
Thnx for this
@TheBackbenchersdiy
@TheBackbenchersdiy 4 года назад
Welcome
@solanajohnanthony1314
@solanajohnanthony1314 Год назад
can someone help me? Firmware Version: 0xF0 = (unknown) Scan PICC to see UID, SAK, type, and data blocks... this is the message in serial monitor
@etrugulosmaneditz
@etrugulosmaneditz 3 года назад
The lock is not moving everything else works.Help Me
@rosserosete3799
@rosserosete3799 2 года назад
No me lee la tarjeta ni el TAG, alguien sabe que hacer...
@tanishatasnin8166
@tanishatasnin8166 Год назад
Error: 13 INTERNAL: Library install failed: moving extracted archive to destination dir: Library MFRC522 is already installed, but with a different version: MFRC522@1.3.6 . i found this error , anyone can help me plzz its urgent ,
@nazranzafran3807
@nazranzafran3807 3 года назад
Why i cant use 9v battery?
@mamatasahu6316
@mamatasahu6316 4 года назад
Please solve your code
@prasadparadkar8750
@prasadparadkar8750 5 лет назад
exit status 1, error compiling for arduino/genuino uno help me how to fix this error
@mohamedbensalah19
@mohamedbensalah19 4 года назад
restart your program,check the settings(board,port,programmer)make sure lib is installed correctly and rerun the program
@sanjayshrama1552
@sanjayshrama1552 4 года назад
@@mohamedbensalah19 RFID is connected to breadboard or not
@ritikbarange9668
@ritikbarange9668 4 года назад
Sir please give me a code link
@azulgadea
@azulgadea Год назад
Firmware Version: 0x0 = (unknown) WARNING: Communication failure, is the MFRC522 properly connected? Scan PICC to see UID, SAK, type, and data blocks...
@albertsmall2981
@albertsmall2981 Год назад
make sure you are using the correct pin configuration for your arduino
@Pratapsingh33
@Pratapsingh33 5 лет назад
Bhai esh Mai Banda andar Jane k bad kese Bhar Aaye ga reset button too kaam hi Nahi karta code mai
@m.shayanshamim6351
@m.shayanshamim6351 3 года назад
Sir mujhe iska circuit diagram aur code chahie
@rainermatthew4676
@rainermatthew4676 4 года назад
Bro Can you help me to add multiple card
@Zuttie581
@Zuttie581 Год назад
DO comma then
@sanjayshrama1552
@sanjayshrama1552 4 года назад
Sir please provide cricuit diagram
@clydearcega4139
@clydearcega4139 4 года назад
Hi can you make it using arduino nano
@TheBackbenchersdiy
@TheBackbenchersdiy 4 года назад
Humm same pin are use for arduino nano
@ATLTraveler
@ATLTraveler 4 года назад
Of course
@sherry76f66
@sherry76f66 3 года назад
Can u leave a link for code
@pantawidkapalong2508
@pantawidkapalong2508 3 года назад
sir please help me ;( it says ARNING: Communication failure, is the MFRC522 properly connected?
@Besho320
@Besho320 3 года назад
Same problem
@alexgarcia2714
@alexgarcia2714 3 года назад
try closing any other tabs that might be using the com port
@prasadshinde6536
@prasadshinde6536 4 года назад
How to get out of the room?
@sanu7210
@sanu7210 4 года назад
Please remove autolocking
@TheBackbenchersdiy
@TheBackbenchersdiy 4 года назад
Autolocking depends on door lock otherwise it's just normally open
@TheBackbenchersdiy
@TheBackbenchersdiy 4 года назад
Use delay time to change the locking time
@bhanukeerthivinod432
@bhanukeerthivinod432 3 года назад
it is showing errors
@He-333
@He-333 8 месяцев назад
Code
@marcosdasilva7409
@marcosdasilva7409 3 года назад
SHOW.
@He-333
@He-333 8 месяцев назад
Cold??????????¿?¿??¿?!¿
@He-333
@He-333 8 месяцев назад
I meant code???
@anantamondal20
@anantamondal20 5 лет назад
Background music ta valo hy ni
@TheBackbenchersdiy
@TheBackbenchersdiy 5 лет назад
tui e to bacha dita paris
@ariqarany8054
@ariqarany8054 Год назад
guyssssssssssssssssssssssssssssssssssssssssssssssssssssss helppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp
@loesankunpanya8325
@loesankunpanya8325 3 года назад
i wont your code
@111Lab
@111Lab 4 года назад
making soup in the background
@Spark_plug815
@Spark_plug815 Год назад
bro can u help me now !!! im cant use code MFRC522.h Arduino: 1.8.18 (Windows 10), Board: "Arduino Uno" Arduino-Security-Access-Lock-RFID-MFRC522:7:10: fatal error: MFRC522.h: No such file or directory #include ^~~~~~~~~~~ compilation terminated. exit status 1 MFRC522.h: No such file or directory This report would have more information with "Show verbose output during compilation" option enabled in File -> Preferences. pls help me!!
Далее
Электронный замок с RFID на Arduino
14:50
@HolyBaam ультанул в конце 🧨
00:34
Просмотров 192 тыс.
Rfid door lock using arduino | RFID projects
5:47
Просмотров 21 тыс.
Arduino Based RFID Door Lock  - Make Your Own
6:59
Просмотров 333 тыс.
RFID DOOR LOCK -  with 3D printed case
15:12
Просмотров 87 тыс.
NRF24 Frustration - Radio module doesn't work?
12:46
Просмотров 90 тыс.
Confessions of a Hacker known as Kingpin - @JoeGrand
12:36
Electromagnetic Aircraft Launcher
15:09
Просмотров 1,4 млн
How to Make RFID Door Lock System using Arduino
9:26