So the scanner makes these "templates" and for example Fingerprint Scanner - 5V TTL (GT-511C1R) can save up to 20 scans on itself.
But what if I want to use multiple scanners on single Arduino and want to use a single database?
I can't find what type of database does it use to store all these "templates".
What if I want to use these "templates" and want to "expend" or better said "develop" this database?
So yea
What type of database is it and can I "expand" the database or simply make that these "templates" get saved into my own database ?
dualAK:
Hello
Just a quick question
So the scanner makes these "templates" and for example Fingerprint Scanner - 5V TTL (GT-511C1R) can save up to 20 scans on itself.
But what if I want to use multiple scanners on single Arduino and want to use a single database?
I can't find what type of database does it use to store all these "templates".
What if I want to use these "templates" and want to "expend" or better said "develop" this database?
So yea
What type of database is it and can I "expand" the database or simply make that these "templates" get saved into my own database ?
Thanks
Studying the SDK might help. Running the SDK demo and also studying it's code will give some clues. It has "Set Template", "Get Template", "Set Database" and "Get Database" buttons. You can read the corresponding code.
I guess to get the functionality that you want, you should write your own application in Visual C using the SDK.
The product description says: "This is the more economical version of the GT-511 which has a decreased memory capacity (compared to the GT-511C3). The module can only store up to 20 different fingerprints but is capable of 360° fingerprint recognition and download and upload templates using serial interface. If you are on a budget and need only a small number of fingerprints stored, this is the perfect option for you!"
If you need to recognize more than 20 prints you could use the Fingerprint Scanner - TTL (GT-511C3) which can hold 200 and costs less than $20 more. I'm sure that both have the ability of moving fingerprint templates to a central location and from there to multiple scanners.
johnwasser:
The product description says: "This is the more economical version of the GT-511 which has a decreased memory capacity (compared to the GT-511C3). The module can only store up to 20 different fingerprints but is capable of 360° fingerprint recognition and download and upload templates using serial interface. If you are on a budget and need only a small number of fingerprints stored, this is the perfect option for you!"
If you need to recognize more than 20 prints you could use the Fingerprint Scanner - TTL (GT-511C3) which can hold 200 and costs less than $20 more. I'm sure that both have the ability of moving fingerprint templates to a central location and from there to multiple scanners.
If it all doesn't have to be in the same database, the Windows demo software that's provided can save templates and databases to a location chosen by the user. The GUI app that's provided makes this very clear.
It's only if he wants to keep it all in one database file and one template file that it gets complicated.
Or if, as he said, he wants to "develop" this database". Otherwise theere's no need to study the SDK etc.