Fingerprint question

For other supported Arduino products from Adafruit: Shields, accessories, etc.

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
User avatar
adafruit_support_rick
 
Posts: 35092
Joined: Tue Mar 15, 2011 11:42 am

Re: Fingerprint question

Post by adafruit_support_rick »

What player? I don't know what you're referring to.

User avatar
aclecio_ul
 
Posts: 3
Joined: Sat Mar 04, 2017 8:15 pm

Re: Fingerprint question

Post by aclecio_ul »

I made a mistake and changed the baud value uint8_t Adafruit_Fingerprint :: setSysPara (void) {
  Uint8_t packet [] = {0x0e, 0x4,0x1};
For uint8_t packet [] = {0x0e, 4.0};
Is there a possibility to reverse the process?
Sorry about my English.
By BR

User avatar
adafruit_support_rick
 
Posts: 35092
Joined: Tue Mar 15, 2011 11:42 am

Re: Fingerprint question

Post by adafruit_support_rick »

There is not factory reset.
Looks like you set the baud rate to 9600. So, change your sketch to communicate with the sensor at 9600 baud. Then you can talk to the sensor again. You can change the baud rate back to 57600 with the setsyspara command.

User avatar
aclecio_ul
 
Posts: 3
Joined: Sat Mar 04, 2017 8:15 pm

Re: Fingerprint question

Post by aclecio_ul »

I tried, but without success. The device cannot verify the password.

User avatar
adafruit_support_rick
 
Posts: 35092
Joined: Tue Mar 15, 2011 11:42 am

Re: Fingerprint question

Post by adafruit_support_rick »

You're changing this line to 9600, right?

Code: Select all

  // set the data rate for the sensor serial port
  finger.begin(57600);
I think all you can do is try some other baudrates. See if you can find one that works. They will be in increments of 9600

User avatar
coniocharles
 
Posts: 2
Joined: Wed Mar 15, 2017 11:23 am

Re: Fingerprint question

Post by coniocharles »

Hello,
I Am working on A project,
It's either the User can Input his Fingerprint ID(Or any Unique id based on his fingerprint)
or Scan his finger.
I dont want to enroll the fingerprint since I have an external database.
So my fingerprint would be stored inside that external database.

User avatar
adafruit_support_rick
 
Posts: 35092
Joined: Tue Mar 15, 2011 11:42 am

Re: Fingerprint question

Post by adafruit_support_rick »

coniocharles wrote:I dont want to enroll the fingerprint since I have an external database.
So my fingerprint would be stored inside that external database.
The match must take place in the sensor itself. You would have to
1) enroll fingers on the sensor
2) transfer the fingerprint template from the sensor to your database

To match, you would have to
1) transfer your entire template database to the sensor
2) perform the match

Unfortunately, we don't have any examples of doing any of this

User avatar
teprojects2
 
Posts: 14
Joined: Sat Jan 21, 2017 4:59 am

Re: Fingerprint question

Post by teprojects2 »

Can you please explain me about "INTERFACING OF RFID RC522 WITH ARDUINO"

User avatar
aronll
 
Posts: 2
Joined: Fri Mar 31, 2017 3:30 am

Re: Fingerprint question

Post by aronll »

Hello! I have problem with ZFM-60 scanner.
Early I set Baudrate to 19200 (9600*2) and all worked good.
But now I have aa mistake and set baudrate 9600*5 and then scanner dont wont work with Arduino program (dont work any functions, like verifyPassword and other...)
I tryed to pick up need baudrate with 9600 step, but he dont work.
Help me, please(

PS: baudrate in Serial with PC = 115200
I also try to set this num to 57600, 48000 ....

________________________________________________-

All good)
My problem was in old Arduino IDE (I used 1.0.6, in wich this parametres dont work, but in 1.6.5 all good)

User avatar
hmxmghl
 
Posts: 5
Joined: Thu Jul 13, 2017 2:08 pm

Re: Fingerprint question

Post by hmxmghl »

Hello,

@Don

Great work. Just one problem I am facing. I hope you can help. When following your instructions and using modified .cpp and .h files, I get 688 bytes of template. But "enroll.ino" file doesn't work any more. It give error "Unknown Error" after Creating Model ID # 1. Can you please help me with this?

@Rick

Can you suggest a solution too?

Thank you very much in advance.

User avatar
adafruit_support_rick
 
Posts: 35092
Joined: Tue Mar 15, 2011 11:42 am

Re: Fingerprint question

Post by adafruit_support_rick »

What version of Arduino are you using?
Do you have the latest version of the fingerprint library?

User avatar
hmxmghl
 
Posts: 5
Joined: Thu Jul 13, 2017 2:08 pm

Re: Fingerprint question

Post by hmxmghl »

I have the modified version uploaded by Don which returns full 688 bytes template. It is working perfectly except it gives error while enrolling. Any guesses why?

User avatar
adafruit_support_rick
 
Posts: 35092
Joined: Tue Mar 15, 2011 11:42 am

Re: Fingerprint question

Post by adafruit_support_rick »

There was a bug in the library when Don ported it. The bug involved using the incorrect buffer size for the sensor's responses.
You can look at the changes here:
https://github.com/adafruit/Adafruit-Fi ... 83f263ccb6

You'll probably have to incorporate those changes into Don's version

User avatar
hmxmghl
 
Posts: 5
Joined: Thu Jul 13, 2017 2:08 pm

Re: Fingerprint question

Post by hmxmghl »

Thank you very much, Rick. I modified the library as per your suggestion and it worked like a charm.

You are the best. Thanks again :)

User avatar
adafruit_support_rick
 
Posts: 35092
Joined: Tue Mar 15, 2011 11:42 am

Re: Fingerprint question

Post by adafruit_support_rick »

No problem!
Can you post a zip of your modified library here in case someone else needs it? Or maybe publish it on github?

Locked
Please be positive and constructive with your questions and comments.

Return to “Other Arduino products from Adafruit”