//Enroll_Fixed Coding:// #include #include uint8_t getFingerprintEnroll(int id); // pin #2 is IN from sensor (GREEN wire) // pin #3 is OUT from arduino (WHITE wire) SoftwareSerial mySerial(2,3); Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial); void setup() { Serial.begin(9600); Serial.println("fingertest"); // set the data rate for the sensor serial port finger.begin(57600); if (finger.verifyPassword()) { Serial.println("Found fingerprint sensor!"); } else { Serial.println("Did not find fingerprint sensor :("); while (1); } } void loop() // run over and over again { Serial.println("Type in the ID # you want to save this finger as..."); int id = 0; while (true) { while (! Serial.available()); char c = Serial.read(); if (! isdigit(c)) break; id *= 10; id += c - '0'; } Serial.print("Enrolling ID #"); Serial.println(id); while (! getFingerprintEnroll(id) ); } uint8_t getFingerprintEnroll(int id) { uint8_t p = -1; Serial.println("Waiting for valid finger to enroll"); while (p != FINGERPRINT_OK) { p = finger.getImage(); switch (p) { case FINGERPRINT_OK: Serial.println("Image taken"); break; case FINGERPRINT_NOFINGER: Serial.println("."); break; case FINGERPRINT_PACKETRECIEVEERR: Serial.println("Communication error"); break; case FINGERPRINT_IMAGEFAIL: Serial.println("Imaging error"); break; default: Serial.println("Unknown error"); break; } } // OK success! p = finger.image2Tz(1); switch (p) { case FINGERPRINT_OK: Serial.println("Image converted"); break; case FINGERPRINT_IMAGEMESS: Serial.println("Image too messy"); return p; case FINGERPRINT_PACKETRECIEVEERR: Serial.println("Communication error"); return p; case FINGERPRINT_FEATUREFAIL: Serial.println("Could not find fingerprint features"); return p; case FINGERPRINT_INVALIDIMAGE: Serial.println("Could not find fingerprint features"); return p; default: Serial.println("Unknown error"); return p; } Serial.println("Remove finger"); delay(2000); p = 0; while (p != FINGERPRINT_NOFINGER) { p = finger.getImage(); } p = -1; Serial.println("Place same finger again"); while (p != FINGERPRINT_OK) { p = finger.getImage(); switch (p) { case FINGERPRINT_OK: Serial.println("Image taken"); break; case FINGERPRINT_NOFINGER: Serial.print("."); break; case FINGERPRINT_PACKETRECIEVEERR: Serial.println("Communication error"); break; case FINGERPRINT_IMAGEFAIL: Serial.println("Imaging error"); break; default: Serial.println("Unknown error"); break; } } // OK success! p = finger.image2Tz(2); switch (p) { case FINGERPRINT_OK: Serial.println("Image converted"); break; case FINGERPRINT_IMAGEMESS: Serial.println("Image too messy"); return p; case FINGERPRINT_PACKETRECIEVEERR: Serial.println("Communication error"); return p; case FINGERPRINT_FEATUREFAIL: Serial.println("Could not find fingerprint features"); return p; case FINGERPRINT_INVALIDIMAGE: Serial.println("Could not find fingerprint features"); return p; default: Serial.println("Unknown error"); return p; }
// OK converted! p = finger.createModel(); if (p == FINGERPRINT_OK) { Serial.println("Prints matched!"); } else if (p == FINGERPRINT_PACKETRECIEVEERR) { Serial.println("Communication error"); return p; } else if (p == FINGERPRINT_ENROLLMISMATCH) { Serial.println("Fingerprints did not match"); return p; } else { Serial.println("Unknown error"); return p; } p = finger.storeModel(id); if (p == FINGERPRINT_OK) { Serial.println("Stored!"); } else if (p == FINGERPRINT_PACKETRECIEVEERR) { Serial.println("Communication error"); return p; } else if (p == FINGERPRINT_BADLOCATION) { Serial.println("Could not store in that location"); return p; } else if (p == FINGERPRINT_FLASHERR) { Serial.println("Error writing to flash"); return p; } else { Serial.println("Unknown error"); return p; } }
check the wires. Green goes to 11 and White goes to 10. You connected correct? If switched, will not work. And in the coding inside the bracket it should be (11,10). If you put (10,11) will not work.
Hello. I have some questions. How can I show a message when the finger is not enrolled? Where do i put it in the code? I added two leds(red and green) and i want to make the red one light up when it's the wrong finger and the green one when it's verified. I got the green one down , but again I don't know which section of the code is for when the finger is not verified so that i can add the code to light the red led and show a message. Thanks a lot for the video.
Hy, i have an error message like this "did not found finger print bla bla ", i have to try sfg demo software it work very well, but when i try example code from adafruit it shown the "did not found finger print bla". Thanks.
Thanks bro... :) ... I went through all of the issues while I am doing my project with fingerprint sensor. That made me do this video with every possible details. Stay tuned for more useful stuff... :D
Well If you want to store the finger print images on the database, yes possible! but you can't do it with this sensor. There are sensors that can send the fingerprint image to the computer so that you can process further.
hi mate, I'm still getting the "did not find fingerprint sensor :(" error in the serial monitor, i reckon its got something to do with a password. i know what the password is I'm just not sure where i insert it into the code? any help would be greatly appreciated. yours sincerely, the arduino noob.
wires order for my fingerprint is as it follows: red, black, yellow, green, blue, white I connected them as you did in the video but my fingerprint sensor doesn't power on. It just flashes blue light than it stops when i upload the code in arduino ide, i get this error: fingertest Did not find fingerprint sensor :(
hey nova technologies can you tell me what are the two extra pins (pin 1 int and pin 2 reset) available in different fingerprint scanners such as R502 which are capacitive . Can you tell me the pin connection for them in arduino
Hie sir i am using r307 sensor and Arduino mega since i made the changes in the code but i am not getting anything in the serial monitor please can u suggest me what is the issue
Hi most probably the communication problem. Check the wire connections are good (you can do a continuity check). And then also make sure you are following all the steps I mentioned in the video...
hello. thank you for the video. very nice. i have a question that maybe u can help me with. i don't want to save the fimgerprints information in the fingerprint device, but send it and recieve it from a server. is this possible through serial communication?
Hello sir. How can I make my fingerprint ID #1/2/3 give an output to my arduino board? Like when I place my fingerprint ID #1, pin 5 on my arduino board activates a led. Thanks for your help in advance. It's for a project.
Hello, All you have to do is writing an if loop function regarding the fingerprint id. I have uploaded a video for the exact purpose of yours. You can find it in my videos with the title, "How to Make a Fingerprint Verification Device at home | Arduino DIY ". You can find the coding in the FIRST COMMENT of the above mentioned video. The answer for your question is there. Good luck.
I am using a GT-511C3 fingerprint scanner. Will the above software and code be compatible with that device? Actually in place of "Found fingerprint sensor" , it is showing "Did not find fingerprint sensor"
bro, i tried to write 1 , 2 , 3 etc. but i couldn't be written in the serial monitor....and whwn i going to type ' # ' only in the serial monitor then the enrolling start wit 0's...please help me to correct my code ...
Hello, it is possible to generate a validation with the Serial meassage? What if when somebody Dissamble the Door Loch (sensor) and replace theFingerprint Sensor withan ordanary Ardoino wich Send the verication Meassage (#1,2,3,4 und so an Found) If a am right, it is easy to hack i oder am i wrong?
Hello there the video is great. The problem I'm having is UNKNOWN ERROR, I've checked numerous times and code is correct and your procedure was followed also. Im using a MacBook Pro and software is 1.8.1 ide. I'm wondering could you help me solve this problem???
:) Hey thanks, let me see what I can do. So when do you get the "UNKNOWN ERROR"? during the verification? What is the arduino board you are using? are the connecting pins correct according to the arduino board type?
I solved the "unknown error" problem. the thing is our arduino ide were not recognizing the adafruit master library simply copy paste the files in libraries folder also add from sketch menu and most important uninstall the existing ide software and install it again after doing all this mine problem solved now everything is working perfect m so happy
for arduno uno R3 and R307 Fingerprint Reader Optical Sensor Module red and black wire connected with 5v and ground. white wire to 3 and yellow wire to 2 instead of green in the above video.though this module contain 6 wire.green and blue is not used here.code is used which given in the example of arduno software.
And also thank you very much for sharing the knowledge with us that you gained. I will use the details in the comments in upcoming videos and guide the people who struggle with r307 sensor. You done a great job. cheers.!
Hello sir, i am trying to interface r305 fingerprint module with Nodemcu-12E module ... when i try with the enroll code of adafruit library i am getting error as "Did not find fingerprint sensor" ...can u please help me how to resolve this.....thank you
you have to change the wire connections. There is a guy who had such a problem with r307 and he solved it. He even explained how he did it. Please go through all the comments and replies. You can find his answer somewhere there.
You have to change the connection. There was a guy with the same issue with r307 sensor and he solved it. He even explained how he solved it. Please go through all the comments and replies. You can find the solution.
can you please tell me that r305 will work with Nodemcu-12E module? i have tried with different GPIO pins of Nodemcu module but i am getting the same error.
i have connected the sensor RX pin to TX pin(pin 1) of Nodemcu module...and sensor TX pin to RX(pin 3) pin of nodemcu module and Software serial pins as..... SoftwareSerial mySerial(3,1); can you please help why it is not recognizing my r305 fingerprint module..
I follow all the things shown in the video , and everything was ok but when I use enroll program and upload it after placing my finger it gives me a "unknown error" in the serial monitor plz help.
I think either there is something wrong with your coding or the method of enrolling. Did you use the same coding I have provided in the comment? If you get the error still, please drop me a mail with the details so that I can check and try to help you. find my mail address here : nik261190@gmail.com
iam using fingerprint module r305 iam getting unkown error please help me if i keep the baud rate of finger at 57600 it is saying that the fingerprint sensor not found chaged different baud rates at last 74880 worked but getting unkown error plz...help me
Hi, I have tried to compile your Enroll_Fixed Code, and it is not compiling. It is displaying an error message thus: stray '\357' in program . i need your help on this please
May you please assist me with interfacing two fingerprint sensors(enrolling and authentication) with arduino, i can only have one working but not two working at the same time and alos enrooling also works with one sensor when powered and i get communication error on the other sensor. thank you
@@NovaTechnologies is used the following pins for the two sensors SoftwareSerial mySerial(2, 3); Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial); SoftwareSerial exitboom(6, 7); Adafruit_Fingerprint exitfinger = Adafruit_Fingerprint(&exitboom); but the sensors interfere with each other for some reason
hello your enroll code is correct. when i run it , at the serial monitor i receive the message "fingerprint module not found". please what can be the problem? i use arduino uno and followed all your steps. but the module is not found and it is the second module i am buying
Connections. Connections matter. Also it differs from board to board. What is the board you are using? and what are the pins connected with the sensor?
thanks man. actually the problem was that my sensor has 6 pins so it is an R307. I had to read all the comments and I found the solution to it suggested by one of your fans. thanks again
Well, it may not. It is only for fingerprint sensors. further adafruit, and r305 fingerprint sensors work fine with this. I am not sure abt others but you can give a try yet.
sir can you give me code in which if the fingerprint is correct the servo motor is driven and when finger placed again the motor gets driven the other way.
Please check my another video in the channel, the topic of the video is "How to make a fingerprint verification device at home? ". The code is available in the comment of the video. You can modify the code by adding servo moving command inside the if loop where I have now added the LED blink code.
My R307 Fingerprint sensor is just blinking once when connected with arduino uno R3 and then it doesn't responds. Though all my connections are correct. Can you please help me out please !
the second part of coding is not available anymore as new verssion of ardiuno ide does not have any examples for fingerprint sensors please someone help
S Selvanigethan do you have any recommendation for fingerprint sensor module so i can save the fingerprint outside the module (like server or sd card because i use 5 fingerprint sensor and i dont want to user have to input fingerprint in each modul)
well, there is a software called SFG demo. I think you can try it out. That will work with the same fingerprint module and save the images externally. Give a try on it.
Im doing an automatic attendance maintenance system in NetBeans IDE java application . I need to get the attendance of all employee by a fingerprint sensor with arduino uno. can you please give any suggestion or help ??
yup , i don't understand how to get fingerprint information to my java app. Java app should get the fingerprint and authenticate , actually we are feeding instruction or code to Arduino ana finger print sensor through Arduino software , here im confused with fingerprint information and save to my sql database , and connect with java
Connect an lcd display. Add the library Define the connection pins Write lcd print instead of serial print. You can find numerous sources to connect lcd display. :D
Nova Technologies :I have connected my fingerprint sensor to arduino Mega.... But there is no led glow on the fingerprint module.. I used pins 10 and 11 for transmit and receive
No glow? not even once? If you did not get the glow even at the moment you give it power (red - 5V, black - GND) thenthe issue is with power. Try give 5V from an outside source and check if it glows. If it glows for the first time and there is no continuous glow, please invert the yellow, blue wires; If it does not work replace them. And also search for the connection diagram of r305 on google (as usual :D). If any of it does not work, let me know.
i have changed the wires,but there is no glow in fingerprint module...And i am getting"did not find fingerprint module" in the com port...unable to solve this problem.....Is there any problem with fingerprint module??
Most probably not. Now remove all wires and only connect the power wires (red and black). Now just tell me, at the moment when you give the power to the module, does the module blink atleast once?
That's ok but my problem is that my sensor only blinks once and still it has 6 wires i.e. red, black, yellow, green, blue and white. It's connection to Arduino Mega 2560
i am using GT-511C11 fingerprint scanner and I've follow all your instructions but when it comes to fingertest "Did not find fingerprint sensor :("...I need some help...
Thanks for your videos! I have a doubt. Is ti possible to do the following? : Device detects Id #1 fingerprint. And load an url somesite . com/id=1 Php server gets that id and compares if it exists. If true or not, it returns a value to the browser. Arduino reads that value and and depending on trie or false it turns om a led ( or it can be a lock. Just an example). Thank you!!
Nova Technologies thanks a lot for your reply! I said php just for saying any web language. But if you say its possible its great news! One more question. I read that limit of fingerprints refistered is 300. Can i do something to increase thst number or make the sensor uses computer's memory?
Hi, The sensors normally have 500 or 1000 templates memory. If you want to send the fingerprint images to computer, you can do. But you will need some additional software and configuration. Then you can save any number of fingerprints.
hi u can check in the arduino IDE settings where is your arduino folder, in that folder if you don't have a folder called libraries u can create it and copy the new libray in it amd the next time u start the arduino IDE you should have new examples from the new library
You have to use an if loop. You need to combine both codes together, and run the fingerprint verification code first. While you get a fingerprint which you wanted, use an if loop and write the sms sending code inside it. It is like, If(fingerprintid==10){ Send SMS to 0XXXXXXXX; } If you have an issue with where the if loop should be placed, check my another video in this channel "How to Make a Fingerprint Verification Device at home | Arduino DIY ". Also you can find the coding in the comment of that particular video... :D
Hello there I watch the video.It is so awesome. You made it with all its details.but I could not find the source code and the protues simulation to run and verify it myself.Please! can you send it or tell me the exact location in the uploads?
Check in the comments you will find. Anyway, here you go: //Enroll_Fixed Coding:// #include #include uint8_t getFingerprintEnroll(int id); // pin #2 is IN from sensor (GREEN wire) // pin #3 is OUT from arduino (WHITE wire) SoftwareSerial mySerial(2,3); Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial); void setup() { Serial.begin(9600); Serial.println("fingertest"); // set the data rate for the sensor serial port finger.begin(57600); if (finger.verifyPassword()) { Serial.println("Found fingerprint sensor!"); } else { Serial.println("Did not find fingerprint sensor :("); while (1); } } void loop() // run over and over again { Serial.println("Type in the ID # you want to save this finger as..."); int id = 0; while (true) { while (! Serial.available()); char c = Serial.read(); if (! isdigit(c)) break; id *= 10; id += c - '0'; } Serial.print("Enrolling ID #"); Serial.println(id); while (! getFingerprintEnroll(id) ); } uint8_t getFingerprintEnroll(int id) { uint8_t p = -1; Serial.println("Waiting for valid finger to enroll"); while (p != FINGERPRINT_OK) { p = finger.getImage(); switch (p) { case FINGERPRINT_OK: Serial.println("Image taken"); break; case FINGERPRINT_NOFINGER: Serial.println("."); break; case FINGERPRINT_PACKETRECIEVEERR: Serial.println("Communication error"); break; case FINGERPRINT_IMAGEFAIL: Serial.println("Imaging error"); break; default: Serial.println("Unknown error"); break; } } // OK success! p = finger.image2Tz(1); switch (p) { case FINGERPRINT_OK: Serial.println("Image converted"); break; case FINGERPRINT_IMAGEMESS: Serial.println("Image too messy"); return p; case FINGERPRINT_PACKETRECIEVEERR: Serial.println("Communication error"); return p; case FINGERPRINT_FEATUREFAIL: Serial.println("Could not find fingerprint features"); return p; case FINGERPRINT_INVALIDIMAGE: Serial.println("Could not find fingerprint features"); return p; default: Serial.println("Unknown error"); return p; } Serial.println("Remove finger"); delay(2000); p = 0; while (p != FINGERPRINT_NOFINGER) { p = finger.getImage(); } p = -1; Serial.println("Place same finger again"); while (p != FINGERPRINT_OK) { p = finger.getImage(); switch (p) { case FINGERPRINT_OK: Serial.println("Image taken"); break; case FINGERPRINT_NOFINGER: Serial.print("."); break; case FINGERPRINT_PACKETRECIEVEERR: Serial.println("Communication error"); break; case FINGERPRINT_IMAGEFAIL: Serial.println("Imaging error"); break; default: Serial.println("Unknown error"); break; } } // OK success! p = finger.image2Tz(2); switch (p) { case FINGERPRINT_OK: Serial.println("Image converted"); break; case FINGERPRINT_IMAGEMESS: Serial.println("Image too messy"); return p; case FINGERPRINT_PACKETRECIEVEERR: Serial.println("Communication error"); return p; case FINGERPRINT_FEATUREFAIL: Serial.println("Could not find fingerprint features"); return p; case FINGERPRINT_INVALIDIMAGE: Serial.println("Could not find fingerprint features"); return p; default: Serial.println("Unknown error"); return p; }
// OK converted! p = finger.createModel(); if (p == FINGERPRINT_OK) { Serial.println("Prints matched!"); } else if (p == FINGERPRINT_PACKETRECIEVEERR) { Serial.println("Communication error"); return p; } else if (p == FINGERPRINT_ENROLLMISMATCH) { Serial.println("Fingerprints did not match"); return p; } else { Serial.println("Unknown error"); return p; } p = finger.storeModel(id); if (p == FINGERPRINT_OK) { Serial.println("Stored!"); } else if (p == FINGERPRINT_PACKETRECIEVEERR) { Serial.println("Communication error"); return p; } else if (p == FINGERPRINT_BADLOCATION) { Serial.println("Could not store in that location"); return p; } else if (p == FINGERPRINT_FLASHERR) { Serial.println("Error writing to flash"); return p; } else { Serial.println("Unknown error"); return p; } }
still i am not process it but after watching video like and subscribe your channel bro bcz you deserve it , done good job. i have 1 question r305 sensor, EUC interface board and relay is simple setup without coding or programing, or its also need coding or programing?
sir you said fingerprint sensor has 4 wires. but i have a fingerprint sensor and it has 6 wires. now i am confused how to connect these wires. if you can help me, it would be very thankful. please help me.
welcome :D . Ya. you can add name with the id using arduino. But if you need to get photograph then you need a java/c# computer program with database connection.
enrollfixed.ino:181:1: error: stray '\' in program enrollfixed.ino:181:3: error: 'ufeff' does not name a type Error compiling. I am getting this error .what does this mean
with the latest current arduino software, this code, as well as official code, are not functional. But with the old version 1.0.6, it works perfectly. Only one bug (misbehaviour), I encounter consists in the obligation to finish the ID by a non numeric letter. for instance, to enter an ID equal to 22, I have to enter something like that : 22a or 22b, etc.
hi, I will do this project and it includes gsm shield for sending the SMS. so I want ur help bcz i am not familiar with Arduino. so how to contact you. pls qck rly
//Enroll_Fixed Coding://
#include
#include
uint8_t getFingerprintEnroll(int id);
// pin #2 is IN from sensor (GREEN wire)
// pin #3 is OUT from arduino (WHITE wire)
SoftwareSerial mySerial(2,3);
Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial);
void setup()
{
Serial.begin(9600);
Serial.println("fingertest");
// set the data rate for the sensor serial port
finger.begin(57600);
if (finger.verifyPassword()) {
Serial.println("Found fingerprint sensor!");
} else {
Serial.println("Did not find fingerprint sensor :(");
while (1);
}
}
void loop() // run over and over again
{
Serial.println("Type in the ID # you want to save this finger as...");
int id = 0;
while (true) {
while (! Serial.available());
char c = Serial.read();
if (! isdigit(c)) break;
id *= 10;
id += c - '0';
}
Serial.print("Enrolling ID #");
Serial.println(id);
while (! getFingerprintEnroll(id) );
}
uint8_t getFingerprintEnroll(int id) {
uint8_t p = -1;
Serial.println("Waiting for valid finger to enroll");
while (p != FINGERPRINT_OK) {
p = finger.getImage();
switch (p) {
case FINGERPRINT_OK:
Serial.println("Image taken");
break;
case FINGERPRINT_NOFINGER:
Serial.println(".");
break;
case FINGERPRINT_PACKETRECIEVEERR:
Serial.println("Communication error");
break;
case FINGERPRINT_IMAGEFAIL:
Serial.println("Imaging error");
break;
default:
Serial.println("Unknown error");
break;
}
}
// OK success!
p = finger.image2Tz(1);
switch (p) {
case FINGERPRINT_OK:
Serial.println("Image converted");
break;
case FINGERPRINT_IMAGEMESS:
Serial.println("Image too messy");
return p;
case FINGERPRINT_PACKETRECIEVEERR:
Serial.println("Communication error");
return p;
case FINGERPRINT_FEATUREFAIL:
Serial.println("Could not find fingerprint features");
return p;
case FINGERPRINT_INVALIDIMAGE:
Serial.println("Could not find fingerprint features");
return p;
default:
Serial.println("Unknown error");
return p;
}
Serial.println("Remove finger");
delay(2000);
p = 0;
while (p != FINGERPRINT_NOFINGER) {
p = finger.getImage();
}
p = -1;
Serial.println("Place same finger again");
while (p != FINGERPRINT_OK) {
p = finger.getImage();
switch (p) {
case FINGERPRINT_OK:
Serial.println("Image taken");
break;
case FINGERPRINT_NOFINGER:
Serial.print(".");
break;
case FINGERPRINT_PACKETRECIEVEERR:
Serial.println("Communication error");
break;
case FINGERPRINT_IMAGEFAIL:
Serial.println("Imaging error");
break;
default:
Serial.println("Unknown error");
break;
}
}
// OK success!
p = finger.image2Tz(2);
switch (p) {
case FINGERPRINT_OK:
Serial.println("Image converted");
break;
case FINGERPRINT_IMAGEMESS:
Serial.println("Image too messy");
return p;
case FINGERPRINT_PACKETRECIEVEERR:
Serial.println("Communication error");
return p;
case FINGERPRINT_FEATUREFAIL:
Serial.println("Could not find fingerprint features");
return p;
case FINGERPRINT_INVALIDIMAGE:
Serial.println("Could not find fingerprint features");
return p;
default:
Serial.println("Unknown error");
return p;
}
// OK converted!
p = finger.createModel();
if (p == FINGERPRINT_OK) {
Serial.println("Prints matched!");
} else if (p == FINGERPRINT_PACKETRECIEVEERR) {
Serial.println("Communication error");
return p;
} else if (p == FINGERPRINT_ENROLLMISMATCH) {
Serial.println("Fingerprints did not match");
return p;
} else {
Serial.println("Unknown error");
return p;
}
p = finger.storeModel(id);
if (p == FINGERPRINT_OK) {
Serial.println("Stored!");
} else if (p == FINGERPRINT_PACKETRECIEVEERR) {
Serial.println("Communication error");
return p;
} else if (p == FINGERPRINT_BADLOCATION) {
Serial.println("Could not store in that location");
return p;
} else if (p == FINGERPRINT_FLASHERR) {
Serial.println("Error writing to flash");
return p;
} else {
Serial.println("Unknown error");
return p;
}
}
fingertest
Did not find fingerprint sensor :(
Need help to rectify this error
What is the board you are using? Check out the compatible connecting pins for the specific board. For mega and leonardo the pins differ.
I m using Mega with pins 10 & 11. Sensor works fine with SFG Demo Software but doesn't works with Arduino.
check the wires. Green goes to 11 and White goes to 10. You connected correct? If switched, will not work. And in the coding inside the bracket it should be (11,10). If you put (10,11) will not work.
Hello. I have some questions. How can I show a message when the finger is not enrolled? Where do i put it in the code? I added two leds(red and green) and i want to make the red one light up when it's the wrong finger and the green one when it's verified. I got the green one down , but again I don't know which section of the code is for when the finger is not verified so that i can add the code to light the red led and show a message.
Thanks a lot for the video.
Hy, i have an error message like this "did not found finger print bla bla ", i have to try sfg demo software it work very well, but when i try example code from adafruit it shown the "did not found finger print bla". Thanks.
did you find answer for that error?
Im using R307 but the serial monitor says unknown error😥, what to do now?
excellent ....... each and every detail is covered in this video ....... thumbs up .... !!
Thanks bro... :) ... I went through all of the issues while I am doing my project with fingerprint sensor. That made me do this video with every possible details. Stay tuned for more useful stuff... :D
How can I store the fingerprint data to the database? And later I want to authenticate a person from that database. Is it possible?
Well If you want to store the finger print images on the database, yes possible! but you can't do it with this sensor. There are sensors that can send the fingerprint image to the computer so that you can process further.
@@freakedtamil7120 Do you know any name of sensor that would do it?
hi mate, I'm still getting the "did not find fingerprint sensor :(" error in the serial monitor, i reckon its got something to do with a password. i know what the password is I'm just not sure where i insert it into the code? any help would be greatly appreciated. yours sincerely, the arduino noob.
💯% working thanks for the video and program ........✌️✌️✌️✌️
Great. You welcome Akshay.
wires order for my fingerprint is as it follows:
red, black, yellow, green, blue, white
I connected them as you did in the video but my fingerprint sensor doesn't power on. It just flashes blue light than it stops
when i upload the code in arduino ide, i get this error:
fingertest
Did not find fingerprint sensor :(
what is the arduino you are using? uno or mega or what?
im getting a communication error after i put my finger on fingerprint test please answer thanks
Hi what's the model of the fingerprint sensor you used? is this coding only for specific fingerprint sensor?
hey nova technologies can you tell me what are the two extra pins (pin 1 int and pin 2 reset) available in different fingerprint scanners such as R502 which are capacitive . Can you tell me the pin connection for them in arduino
thannnnnnnnnnk you my friend , you saved my life . i thought that my sensor isn't working !!.
You welcome dude..! Thanks :D
did not find fingerprint sensor,,,,,,so please help
Finger print did not fund showing after enrolled plz help
Can any fingerprint sensor use the same coding or the Coding is specific used by specific sensor?
I think we cannot. It is for the specific sensor.
Hie sir i am using r307 sensor and Arduino mega since i made the changes in the code but i am not getting anything in the serial monitor please can u suggest me what is the issue
it's showing did not find fingerprint sensor
Is it possible to program a mobile phone finger print scanner which generally comes at the back of the mobile using these codes
?
It requires more work.
Hello, I've a question, if the serial monitor stated "Did not find fingerprint sensor" what/where the possible problem?
Hi most probably the communication problem. Check the wire connections are good (you can do a continuity check). And then also make sure you are following all the steps I mentioned in the video...
plz help me ! I got error like this in Serial.
23:15:04.573 -> ets Jan 8 2013,rst cause:2, boot mode:(3,6)
23:15:04.573 ->
23:15:04.573 -> load 0x4010f000, len 1384, room 16
23:15:04.608 -> tail 8
23:15:04.608 -> chksum 0x2d
23:15:04.608 -> csum 0x2d
23:15:04.608 -> vac02aff5
23:15:04.608 -> ~ld
Send me more details via mail
UNO identifies the R307 sensor when you plug red wire to 5v, white to ground, yellow to 2, green to 3.
hello. thank you for the video. very nice. i have a question that maybe u can help me with. i don't want to save the fimgerprints information in the fingerprint device, but send it and recieve it from a server. is this possible through serial communication?
For nano which pin i can use
Hello sir. How can I make my fingerprint ID #1/2/3 give an output to my arduino board? Like when I place my fingerprint ID #1, pin 5 on my arduino board activates a led. Thanks for your help in advance. It's for a project.
Hello, All you have to do is writing an if loop function regarding the fingerprint id. I have uploaded a video for the exact purpose of yours. You can find it in my videos with the title, "How to Make a Fingerprint Verification Device at home | Arduino DIY ". You can find the coding in the FIRST COMMENT of the above mentioned video. The answer for your question is there. Good luck.
Thanks for the help 😉
:D
I am using a GT-511C3 fingerprint scanner. Will the above software and code be compatible with that device?
Actually in place of "Found fingerprint sensor" , it is showing "Did not find fingerprint sensor"
hi dude, It will not work. This code is for adafruit fingerprint scanners only. you can find an alternative code for GT-511C3 in online.
bro, i tried to write 1 , 2 , 3 etc. but i couldn't be written in the serial monitor....and whwn i going to type ' # ' only in the serial monitor then the enrolling start wit 0's...please help me to correct my code ...
Hello, it is possible to generate a validation with the Serial meassage?
What if when somebody Dissamble the Door Loch (sensor) and replace theFingerprint Sensor withan ordanary Ardoino wich Send the verication Meassage (#1,2,3,4 und so an Found) If a am right, it is easy to hack i oder am i wrong?
Can you please help that how can I access and extract data of this fingerprint print sensor as I need them to be uploaded on cloud.
Lakin sir when give power and ground r305 fingerprint module then chip is very hot this mean module is damaged.
There may be reasons. may be damaged. or if you have inverted the power pins also, it happens. Better check with another module as well.
Hello sir,
Can tell me how l download fingerprint libraries from internet ..?
this message i have it
Adafruit finger detect test
Did not find fingerprint sensor :(
check the wiring.
@@NovaTechnologies hello sir. I also have the same problem. I already check the wirings but it says it did not find the fingerprint sensor
@@realinoperaltajr.9703 Hi You gotta change the wire connection according to the sensor type.
@@NovaTechnologies What sensor type sir ? I have Arduino Uno r3
@@realinoperaltajr.9703 Adafruit fingerprint sensor
Hello there the video is great. The problem I'm having is UNKNOWN ERROR, I've checked numerous times and code is correct and your procedure was followed also. Im using a MacBook Pro and software is 1.8.1 ide. I'm wondering could you help me solve this problem???
:) Hey thanks, let me see what I can do. So when do you get the "UNKNOWN ERROR"? during the verification? What is the arduino board you are using? are the connecting pins correct according to the arduino board type?
i am also getting the same problem and m using arduino nano
I solved the "unknown error" problem.
the thing is our arduino ide were not recognizing the adafruit master library simply copy paste the files in libraries folder also add from sketch menu
and most important uninstall the existing ide software and install it again
after doing all this mine problem solved now everything is working perfect
m so happy
Im using an Arduino Uno. All pin correct. Im getting the UNKNOWN ERROR during enrolling stage.
this didn't work for me...?
Wow!!!! Thanks friend this video has come to assist me
thanks :)
finally it works...wow.....for R307 Fingerprint Reader Optical Sensor Module green wire is replaced by yellow wire
Great. Please share how you made it happen.
i always thankful to you sir,your answer motivated me a lot.
for arduno uno R3 and R307 Fingerprint Reader Optical Sensor Module
red and black wire connected with 5v and ground. white wire to 3 and yellow wire to 2 instead of green in the above video.though this module contain 6 wire.green and blue is not used here.code is used which given in the example of arduno software.
You are always welcome man.
And also thank you very much for sharing the knowledge with us that you gained. I will use the details in the comments in upcoming videos and guide the people who struggle with r307 sensor. You done a great job. cheers.!
Hello sir, i am trying to interface r305 fingerprint module with Nodemcu-12E module ... when i try with the enroll code of adafruit library i am getting error as "Did not find fingerprint sensor" ...can u please help me how to resolve this.....thank you
you have to change the wire connections. There is a guy who had such a problem with r307 and he solved it. He even explained how he did it. Please go through all the comments and replies. You can find his answer somewhere there.
You have to change the connection. There was a guy with the same issue with r307 sensor and he solved it. He even explained how he solved it. Please go through all the comments and replies. You can find the solution.
can you please tell me that r305 will work with Nodemcu-12E
module? i have tried with different GPIO pins of Nodemcu module but i am getting the same error.
it should work. find out the "software serial pins"
i have connected the sensor RX pin to TX pin(pin 1) of Nodemcu module...and sensor TX pin to RX(pin 3) pin of nodemcu module and Software serial pins as.....
SoftwareSerial mySerial(3,1);
can you please help why it is not recognizing my r305 fingerprint module..
bravo great job but can you let us know where exactly in code you made the change?for better understanding
Check whether the code is available in the description box.
Hi sir!!,
Is this video only based on Adafruit optical finger print sensor?
Hi, yes man. It is exclusive for adafruit fingerprint sensor only since that is most common for arduino. :D
Thanks man..,
give a try with r305(?) fingerprint sensor. some say it works.
I follow all the things shown in the video , and everything was ok but when I use enroll program and upload it after placing my finger it gives me a "unknown error" in the serial monitor
plz help.
I think either there is something wrong with your coding or the method of enrolling. Did you use the same coding I have provided in the comment? If you get the error still, please drop me a mail with the details so that I can check and try to help you. find my mail address here : nik261190@gmail.com
Nova Technologies thank you nova technology I come to know about the problem
tried and sloved
nice video
got very much helo
could you please show me how to bypass the mentioned problem?
hey im also getting the same problem plzzz help me out of this
i have faced the same problem.u just need to change the ide version to 1.6.5.then
it will work for sure...thumbs up to the video
iam using fingerprint module r305 iam getting unkown error please help me
if i keep the baud rate of finger at 57600 it is saying that the fingerprint sensor not found chaged different baud rates at last 74880 worked but getting unkown error
plz...help me
Hi,
I have tried to compile your Enroll_Fixed Code, and it is not compiling. It is displaying an error message thus: stray '\357' in program .
i need your help on this please
go to tools and click fix encoding and reload . after you will see some special characters in last linejus erase them. it worked for me
May you please assist me with interfacing two fingerprint sensors(enrolling and authentication) with arduino, i can only have one working but not two working at the same time and alos enrooling also works with one sensor when powered and i get communication error on the other sensor.
thank you
There are some other serial software pins. you can use them.
@@NovaTechnologies is used the following pins for the two sensors
SoftwareSerial mySerial(2, 3);
Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial);
SoftwareSerial exitboom(6, 7);
Adafruit_Fingerprint exitfinger = Adafruit_Fingerprint(&exitboom);
but the sensors interfere with each other for some reason
Hi sir! Can you help me with my problem on Adafruit fingerprint module? It just disconnects suddenly and turns off. Is it just faulty hardware?
Hey i found some compilation error for board arduino/genuino uno and code doesn't working.. Please help
send me the error details via mail
Will the sensor work if I connect it to analog pins because I want to interface keypad and lcd on my project using arduino uno
No it will not. The pins are fixed. You may need to use a Mega with more pins or use I2C module for LCD display to save some pins.
hello your enroll code is correct. when i run it , at the serial monitor i receive the message "fingerprint module not found". please what can be the problem? i use arduino uno and followed all your steps. but the module is not found and it is the second module i am buying
Connections. Connections matter. Also it differs from board to board. What is the board you are using? and what are the pins connected with the sensor?
Nova Technologies I am using Arduino UNO board. I am using softwareSerial mySerial(2,3); if I change the pins would it work?? Say pins (8,3)?
For arduino uno, green wire has to go pin 2, and white has to go pin 3. Also are you using the adafruit sensor?
thanks man. actually the problem was that my sensor has 6 pins so it is an R307. I had to read all the comments and I found the solution to it suggested by one of your fans. thanks again
I guessed it might have been so. Happy you have found the solution.... Great. Good Luck!!! :D
I have 6 coloured wires from fingerprint sensor,what can I do the remaining two wires??
Please go through all comments and replies.
do wire gundalke rakh
HELLO SIR, may i pease know the Which FingerPrint Sensor u hav used????? .................. waiting for u reply, it will help a lot !!
It is adafruit fingerprint sensor module.
Sir after giving all connections it's comming like finger print is not detected what's is the problem in that sir please tell me.....
is adafruit library is compatible to all brand of biometric scanner?
Thanks for the concern :D
Well, it may not. It is only for fingerprint sensors. further adafruit, and r305 fingerprint sensors work fine with this. I am not sure abt others but you can give a try yet.
Congrat! It worked perfectly on the DY50.
However, on the R502 the fingerprint enrol worked, but cannot read.
Any tips?
send me the full details with error message.
sir can you give me code in which if the fingerprint is correct the servo motor is driven and when finger placed again the motor gets driven the other way.
Please check my another video in the channel, the topic of the video is "How to make a fingerprint verification device at home? ". The code is available in the comment of the video. You can modify the code by adding servo moving command inside the if loop where I have now added the LED blink code.
My R307 Fingerprint sensor is just blinking once when connected with arduino uno R3 and then it doesn't responds. Though all my connections are correct. Can you please help me out please !
check with your fingerprint and serial monitor!
@@NovaTechnologies aah. Completed the semester. But, thanks for replying. 👍👍
@@syedabrar1724 bro plz tell how did u fix that error???
Hi, I have the uart fingerprint reader of "waveshare" but I do not recognize the arduino sketch, please help me
Well, Do inbox me your problem via my mail. I will see whether I can solve it.
the second part of coding is not available anymore as new verssion of ardiuno ide does not have any examples for fingerprint sensors
please someone help
more details pls
is there a way to save new fingerprints not in fingerprint module ?
yes. but you can't do it using this fingerprint sensor.
S Selvanigethan do you have any recommendation for fingerprint sensor module so i can save the fingerprint outside the module (like server or sd card because i use 5 fingerprint sensor and i dont want to user have to input fingerprint in each modul)
well, there is a software called SFG demo. I think you can try it out. That will work with the same fingerprint module and save the images externally. Give a try on it.
use the same. adafruit sensor.
@@nik261190 yeaa im working on it ! thanks anyway
How can I connect it to database and make website as attendance system
can. you need a software engineer.
i use fpm10a, but did not find fingerprint sensor.. i use arduino mega2560.. can you help me
I don't know anything about fpm10a... what's that?
Thanks! i using pin 2 & 3, but in arduino leonardo, so change to 8 & 9, and work!
great. thnx. :D
I am using esp8266. what is pin on this?
my fingerprint sensor sometimes detect finger when there is no finger on it , how can i solve this issue ? is it wires/soldering issue ?
Are using uno or mega? connection may need to be changed depends on that.
Im doing an automatic attendance maintenance system in NetBeans IDE java application . I need to get the attendance of all employee by a fingerprint sensor with arduino uno. can you please give any suggestion or help ??
Yes. All you need is arduino, fingerprint sensor, and a Java app. simple. ;-)
yup , i don't understand how to get fingerprint information to my java app. Java app should get the fingerprint and authenticate , actually we are feeding instruction or code to Arduino ana finger print sensor through Arduino software , here im confused with fingerprint information and save to my sql database , and connect with java
You have to read the serial port using your java app. Reading the finger print id coming through serial port, you can retrieve the data base.
thank u so much bro
u r welcome
how can we display it in lcd?
Connect an lcd display.
Add the library
Define the connection pins
Write lcd print instead of serial print.
You can find numerous sources to connect lcd display. :D
can i enroll more than 1 finger
Yes for sure. up to 500 - 1000 fingers you can.
i am having red, black, yellow, blue wires on R305 module...
what is the hardware connection to arduino Mega...??
Yellow green must have been there as yellow and blue respectively. Just find the connection for mega explained in the video and go on as it is.
Nova Technologies :I have connected my fingerprint sensor to arduino Mega.... But there is no led glow on the fingerprint module.. I used pins 10 and 11 for transmit and receive
No glow? not even once? If you did not get the glow even at the moment you give it power (red - 5V, black - GND) thenthe issue is with power. Try give 5V from an outside source and check if it glows. If it glows for the first time and there is no continuous glow, please invert the yellow, blue wires; If it does not work replace them. And also search for the connection diagram of r305 on google (as usual :D). If any of it does not work, let me know.
i have changed the wires,but there is no glow in fingerprint module...And i am getting"did not find fingerprint module" in the com port...unable to solve this problem.....Is there any problem with fingerprint module??
Most probably not. Now remove all wires and only connect the power wires (red and black). Now just tell me, at the moment when you give the power to the module, does the module blink atleast once?
That's ok but my problem is that my sensor only blinks once and still it has 6 wires i.e. red, black, yellow, green, blue and white. It's connection to Arduino Mega 2560
is this code work for the R307fingerprint sensor
i am using arduino uno when upload "enroll" code the sensor is not detecting by the arduino.but it is ok with the code "fingerprint" .....
Check out the enroll coding. The pin configuration. You can find the coding in one of my videos related to fingerprint sensor.
when we open serial monitor it shows that it did not find a fingerprint sensor. i attached all the wires correctly. plz help
im facing the same problem, the led inside the sensor blinks when its connected then it turns off what to do please help.
very good video sir but
i am fracing this error in serial monitor
fingertest
Did not find fingerprint sensor :(
how to fix this
Thanks. Let's see how your problem can be fixed.
i am facing the same problem sir...what should i do??
There may be many reasons. why don't u mail me the details. my mail address can be found in the about section.
Hi, can u please tell me how did u fixed this error?
kindly reply, can i enroll more than 1 finger
how can i modify the code for identifying
an invalid finger
Let me dig a little on that.
i am using GT-511C11 fingerprint scanner and I've follow all your instructions but when it comes to fingertest "Did not find fingerprint sensor :("...I need some help...
hopefully this code might not work for that version scanners. It is best for adafruit.
Thanks for your videos!
I have a doubt. Is ti possible to do the following? :
Device detects Id #1 fingerprint. And load an url somesite . com/id=1
Php server gets that id and compares if it exists. If true or not, it returns a value to the browser.
Arduino reads that value and and depending on trie or false it turns om a led ( or it can be a lock. Just an example).
Thank you!!
hi thanks.
Yes that's possible.
But i dnt know how to do that yet. I mean I never worked in php.
Nova Technologies thanks a lot for your reply!
I said php just for saying any web language. But if you say its possible its great news! One more question. I read that limit of fingerprints refistered is 300. Can i do something to increase thst number or make the sensor uses computer's memory?
Hi,
The sensors normally have 500 or 1000 templates memory.
If you want to send the fingerprint images to computer, you can do. But you will need some additional software and configuration. Then you can save any number of fingerprints.
Works for me!!! I'm using an economic version named JM101.. regards
Thanks and congrats. Keep supporting! :)
Very nice video thanks what code for led on by right finger print
You are welcome. all same code. you can use any finger.
Can u make a video that how to attach library with arduino
hi u can check in the arduino IDE settings where is your arduino folder, in that folder if you don't have a folder called libraries u can create it and copy the new libray in it amd the next time u start the arduino IDE you should have new examples from the new library
I tried this.
But it shows "didnot find fingerprint sensor"
Please help 😣
I used fingerprint module R307
i have same problem
Hello sir, how to send sms after get fingerprint id, use sim800l module ?
You have to use an if loop. You need to combine both codes together, and run the fingerprint verification code first. While you get a fingerprint which you wanted, use an if loop and write the sms sending code inside it. It is like,
If(fingerprintid==10){
Send SMS to 0XXXXXXXX;
}
If you have an issue with where the if loop should be placed, check my another video in this channel "How to Make a Fingerprint Verification Device at home | Arduino DIY ". Also you can find the coding in the comment of that particular video... :D
i got problem. i put finger.begin and sim800l.begin on setup, and fingerprint always get bypass with id 0
mail me your issue. you can find my mail address in the "about" section of my channel
Can I use different fingerprint modules
Depends.. some work.. some may not.
does anyone know how one can just turn on the LCD Display using the fingerprint sensor and the Arduino UNO
Yea, simply change serial print instruction to lcd.print instructions with change in setup, global variables and adding Lcd library header file
For finger print sensor r307?
Our r305 fingerprint module is not working properly. How can correct.
Please follow the steps on the video. As the responses of the people who have commented, r305 will work in this way. Let me know what happens.
Hai Sir .I have the error like this "Did not found any fingerprint sensor("
adafruit fingerprint sensor?
are you using adafruit fingerprint sensor?
@@NovaTechnologies yes
Please tell the header file of adafruit fingerprint urgent required
Nova Technologies, my fingerprint sensor has 6 wires. what should I do? Thank you :)
please find the model/version of your sensor. adafruit, or r305, or r307 or anything else... then only we can proceed. ;)
Search the internet and you will find the solution. I did. Good luck.
cool :D
i'm almost finished. thanks! :)
stephanie louise molod 0
Arduino board is not recognising the fingerprint sensor. Any idea what might be the cause and how to resolve this.
I guess the wrong pins connected. Are you using uno?
Very very informative. Thank you so much
Thanks james! Keep supporting ❤️
Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial);
can i know what it will do?
I will check out and mail u.
Hello there I watch the video.It is so awesome. You made it with all its details.but I could not find the source code and the protues simulation to run and verify it myself.Please! can you send it or tell me the exact location in the uploads?
Check in the comments you will find. Anyway, here you go:
//Enroll_Fixed Coding://
#include
#include
uint8_t getFingerprintEnroll(int id);
// pin #2 is IN from sensor (GREEN wire)
// pin #3 is OUT from arduino (WHITE wire)
SoftwareSerial mySerial(2,3);
Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial);
void setup()
{
Serial.begin(9600);
Serial.println("fingertest");
// set the data rate for the sensor serial port
finger.begin(57600);
if (finger.verifyPassword()) {
Serial.println("Found fingerprint sensor!");
} else {
Serial.println("Did not find fingerprint sensor :(");
while (1);
}
}
void loop() // run over and over again
{
Serial.println("Type in the ID # you want to save this finger as...");
int id = 0;
while (true) {
while (! Serial.available());
char c = Serial.read();
if (! isdigit(c)) break;
id *= 10;
id += c - '0';
}
Serial.print("Enrolling ID #");
Serial.println(id);
while (! getFingerprintEnroll(id) );
}
uint8_t getFingerprintEnroll(int id) {
uint8_t p = -1;
Serial.println("Waiting for valid finger to enroll");
while (p != FINGERPRINT_OK) {
p = finger.getImage();
switch (p) {
case FINGERPRINT_OK:
Serial.println("Image taken");
break;
case FINGERPRINT_NOFINGER:
Serial.println(".");
break;
case FINGERPRINT_PACKETRECIEVEERR:
Serial.println("Communication error");
break;
case FINGERPRINT_IMAGEFAIL:
Serial.println("Imaging error");
break;
default:
Serial.println("Unknown error");
break;
}
}
// OK success!
p = finger.image2Tz(1);
switch (p) {
case FINGERPRINT_OK:
Serial.println("Image converted");
break;
case FINGERPRINT_IMAGEMESS:
Serial.println("Image too messy");
return p;
case FINGERPRINT_PACKETRECIEVEERR:
Serial.println("Communication error");
return p;
case FINGERPRINT_FEATUREFAIL:
Serial.println("Could not find fingerprint features");
return p;
case FINGERPRINT_INVALIDIMAGE:
Serial.println("Could not find fingerprint features");
return p;
default:
Serial.println("Unknown error");
return p;
}
Serial.println("Remove finger");
delay(2000);
p = 0;
while (p != FINGERPRINT_NOFINGER) {
p = finger.getImage();
}
p = -1;
Serial.println("Place same finger again");
while (p != FINGERPRINT_OK) {
p = finger.getImage();
switch (p) {
case FINGERPRINT_OK:
Serial.println("Image taken");
break;
case FINGERPRINT_NOFINGER:
Serial.print(".");
break;
case FINGERPRINT_PACKETRECIEVEERR:
Serial.println("Communication error");
break;
case FINGERPRINT_IMAGEFAIL:
Serial.println("Imaging error");
break;
default:
Serial.println("Unknown error");
break;
}
}
// OK success!
p = finger.image2Tz(2);
switch (p) {
case FINGERPRINT_OK:
Serial.println("Image converted");
break;
case FINGERPRINT_IMAGEMESS:
Serial.println("Image too messy");
return p;
case FINGERPRINT_PACKETRECIEVEERR:
Serial.println("Communication error");
return p;
case FINGERPRINT_FEATUREFAIL:
Serial.println("Could not find fingerprint features");
return p;
case FINGERPRINT_INVALIDIMAGE:
Serial.println("Could not find fingerprint features");
return p;
default:
Serial.println("Unknown error");
return p;
}
// OK converted!
p = finger.createModel();
if (p == FINGERPRINT_OK) {
Serial.println("Prints matched!");
} else if (p == FINGERPRINT_PACKETRECIEVEERR) {
Serial.println("Communication error");
return p;
} else if (p == FINGERPRINT_ENROLLMISMATCH) {
Serial.println("Fingerprints did not match");
return p;
} else {
Serial.println("Unknown error");
return p;
}
p = finger.storeModel(id);
if (p == FINGERPRINT_OK) {
Serial.println("Stored!");
} else if (p == FINGERPRINT_PACKETRECIEVEERR) {
Serial.println("Communication error");
return p;
} else if (p == FINGERPRINT_BADLOCATION) {
Serial.println("Could not store in that location");
return p;
} else if (p == FINGERPRINT_FLASHERR) {
Serial.println("Error writing to flash");
return p;
} else {
Serial.println("Unknown error");
return p;
}
}
Hi..I m using Uno with pins 2 & 3. but fingertest
Did not find fingerprint sensor :(
Need help.
Sir..
Apki problem fix hui ya ni?
still i am not process it but after watching video like and subscribe your channel bro bcz you deserve it , done good job. i have 1 question r305 sensor, EUC interface board and relay is simple setup without coding or programing, or its also need coding or programing?
Hi Thanks bro. Yes of course. with r305 sensor also you need to program.
but sir i am also using r305 will it work?
I am not sure. But people say it works.
plz i need a help for this message
fingertest
Did not find fingerprint sensor :(
you can elaborate the issue by mailing me.
can u give us the hardware interfacing part also
it is explained in the video. Otherwise, you can find it in my latest video again.
Hii sir can you help me how to fix in fingerprint system in the syatem but off for use switch how to cannect for the switch on and of system
can you explain more clearly?
sir
you said fingerprint sensor has 4 wires. but i have a fingerprint sensor and it has 6 wires. now i am confused how to connect these wires. if you can help me, it would be very thankful. please help me.
well that was adafruit fingerprint with 4 wires. some sensors have 6 wires. may be your one is r305. please find out the model of your sensor.
Thank you for your video. I got my sensors model no. it was r307. and now it is working.
great. Why don't you share your connection with us?
Use your multimeter to solve that problem. Alternative; look on the internet. I did. Good luck.
Safiul Haque I have R307 too please tell me how to use it.
Thanks. Very nice video. Sir can I add the name, photograph along with the ID no.
welcome :D . Ya. you can add name with the id using arduino. But if you need to get photograph then you need a java/c# computer program with database connection.
thanks. for your futurity ok
enrollfixed.ino:181:1: error: stray '\' in program
enrollfixed.ino:181:3: error: 'ufeff' does not name a type
Error compiling.
I am getting this error .what does this mean
I have the error"finger print sensor not found" ,what to do
what fingerprint sensor are you using
with the latest current arduino software, this code, as well as official code, are not functional. But with the old version 1.0.6, it works perfectly.
Only one bug (misbehaviour), I encounter consists in the obligation to finish the ID by a non numeric letter. for instance, to enter an ID equal to 22, I have to enter something like that : 22a or 22b, etc.
Something wrong with the arduino IDE or the serial port. TRy install another version
hi, I will do this project and it includes gsm shield for sending the SMS. so I want ur help bcz i am not familiar with Arduino. so how to contact you. pls qck rly
find my mail in the "about" section
Hello sir goodmorning, i want to use fingerprint in my coin bank can you help me how? How will i know and how will i register my thumb.
clear explanation thanks
My fingerprint sensor is not showing any power sign. The led just glow in the beginning when I connect the Arduino to the laptop. Please help
Check out the conections and then upload the code and see