Fingerprint sensor

Breakout boards, sensors, Drawdio, Game of Life, other Adafruit kits, etc.

Moderators: adafruit_support_bill, adafruit

Fingerprint sensor

Postby ztrabelyk » Sun Apr 22, 2012 3:22 pm

I just received my finger print scanner and I have been unable to get it to work. When I connect it to the Arduino it blinks on and off once not twice as in your tutorial. When I run the blank app and run the windows software it is unable to find the device. I have tried your procedures on two separate computers and two separate operating systems. I think I may have a defective scanner, please let me know what the issue could be thank you.
ztrabelyk
 
Posts: 4
Joined: Sun Apr 22, 2012 3:10 pm

Re: Fingerprint sensor

Postby adafruit » Sun Apr 22, 2012 4:24 pm

can you post a photo showing your exact wiring using the blank sketch?
User avatar
adafruit
 
Posts: 10491
Joined: Thu Apr 06, 2006 3:21 pm
Location: nyc

Re: Fingerprint sensor

Postby ztrabelyk » Mon Apr 23, 2012 7:38 pm

Here you go...when I run the enroll code it says that it detects the scanner however when I input a number and hit return it simply sits there. Additionally, when I hook it directly with the blank code and run SFGDemo it does not detect the scanner on the port (in my case it is com12).

The photo depicts the hookup for enroll using the software serial, when I run the blank code they are switched to 0 &1 respectively. The is so simple yet it will not work, it seems like I have been wasting a lot of time with a defective device.


FingerPrintScanner.jpg
FingerPrintScanner.jpg (381.18 KiB) Viewed 2412 times

FingerPrintScanner2.jpg
FingerPrintScanner2.jpg (152.82 KiB) Viewed 2412 times
ztrabelyk
 
Posts: 4
Joined: Sun Apr 22, 2012 3:10 pm

Re: Fingerprint sensor

Postby adafruit_support_bill » Mon Apr 23, 2012 8:09 pm

The photo depicts the hookup for enroll using the software serial, when I run the blank code they are switched to 0 &1 respectively.

For enroll you should be using the blank sketch and pins 0 & 1.
User avatar
adafruit_support_bill
 
Posts: 16061
Joined: Sat Feb 07, 2009 9:11 am

Re: Fingerprint sensor

Postby ztrabelyk » Mon Apr 23, 2012 8:41 pm

You are misunderstanding me...when I use the windows SFGDemo software I load the blank app onto the Arduino with the white wire connected to digital 0 and the green wire connected to digital 1 which is the second photo (I uploaded them in the wrong order). Since I was unable to enroll via the windows software I uploaded the enroll code which uses software serial as you know connected as represented in the first photo.
ztrabelyk
 
Posts: 4
Joined: Sun Apr 22, 2012 3:10 pm

Re: Fingerprint sensor

Postby adafruit » Mon Apr 23, 2012 10:43 pm

it could very easily be flakey wiring. those connectors shoved into the headers dont do a good job. solder the wires to header an plug them in directly.
User avatar
adafruit
 
Posts: 10491
Joined: Thu Apr 06, 2006 3:21 pm
Location: nyc

Re: Fingerprint sensor

Postby ztrabelyk » Tue Apr 24, 2012 10:52 am

I took it one step further and I ran the fingerprint example and when I did the reader came to life, I then went back to the enroll code and (reading the code 'c' initializes the reader) it now works. The problem is that I still cannot get the windows software to work...have you had success with it under the windows 7 64 bit environment?? If so as an alternative to running the blank code I I simply removed the Atmel chip from my uno wouldn't that bypass it and turn the board into a usb to serial converter? I still would like to get the scanner working with the software since the enroll code is a bit quirky. Any help would be greatly appreciated.
ztrabelyk
 
Posts: 4
Joined: Sun Apr 22, 2012 3:10 pm

Re: Fingerprint sensor

Postby adafruit_support_bill » Tue Apr 24, 2012 3:46 pm

I tested this on a Win-7/64 bit system. You have to run with administrative privileges to connect to the sensor. Right click on SFGDemo and select "Run As Administrator".
User avatar
adafruit_support_bill
 
Posts: 16061
Joined: Sat Feb 07, 2009 9:11 am

Re: Fingerprint sensor

Postby sabor » Wed May 09, 2012 3:57 am

Hi I just received the fingerprint scanner this morning.
I am able to use it with the SFGDemoV2.0.
However, when I upload the code to my Arduino Mega it seems that it doesnt recognize the device.
Only error message "Did not find fingerprint sensor :(" shown in serial monitor.
I am pretty sure that the connection is correct as it is working with my Arduino Uno.

So, I would like to know if it is compatible with Arduino Mega 2560?
Thanks!
sabor
 
Posts: 3
Joined: Wed May 09, 2012 3:52 am

Re: Fingerprint sensor

Postby adafruit_support_bill » Wed May 09, 2012 5:07 am

The device communicates via serial. There should be no compatibility issues with the 2560. Check to make sure all your connections are secure. Are you running the 'blank' sketch on your 2560?
User avatar
adafruit_support_bill
 
Posts: 16061
Joined: Sat Feb 07, 2009 9:11 am

Re: Fingerprint sensor

Postby sabor » Wed May 09, 2012 5:17 am

When I run the 'blank' sketch on my 2560, it is able to work perfectly with the software SFGDemoV2.0
But when I run "enrol" with 2560, only "Finger test. Did not find fingerprint sensor " is shown in serial monitor.
Same problem occurs when "fingerprint"sketch is running.

I dont understand why is it is ok with my Uno but not my 2560 with the same code and connection.
Any suggestion?
sabor
 
Posts: 3
Joined: Wed May 09, 2012 3:52 am

Re: Fingerprint sensor

Postby adafruit_support_bill » Wed May 09, 2012 6:29 am

There are some limitation of SoftwareSerial on the Mega:
Not all pins on the Mega and Mega 2560 support change interrupts, so only the following can be used for RX: 10, 11, 12, 13, 50, 51, 52, 53, 62, 63, 64, 65, 66, 67, 68, 69
User avatar
adafruit_support_bill
 
Posts: 16061
Joined: Sat Feb 07, 2009 9:11 am

Re: Fingerprint sensor

Postby sabor » Wed May 09, 2012 7:05 am

Yes you are correct!!! :lol:

It works with mega after I did the following modification:
Code: Select all
#if ARDUINO >= 100
SoftwareSerial mySerial(11, 10);
#else
NewSoftSerial mySerial(11, 10);
#endif


Whoo~~finally working after one whole day of troubleshooting :shock:
It's a lovely device!

Thanks so much and I really appreciate your prompt reply. :D
sabor
 
Posts: 3
Joined: Wed May 09, 2012 3:52 am

Re: Fingerprint sensor

Postby bhrtrancao » Mon Jun 04, 2012 7:38 pm

I am unable open the SFGDemoV2.0.rar PLEASE HELP
bhrtrancao
 
Posts: 13
Joined: Mon Dec 14, 2009 11:44 am

Re: Fingerprint sensor

Postby adafruit » Mon Jun 04, 2012 7:46 pm

download unrar or an equivalent tool for your OS - check google for unrar tools
User avatar
adafruit
 
Posts: 10491
Joined: Thu Apr 06, 2006 3:21 pm
Location: nyc

Next

Return to Other Adafruit products

Who is online

Users browsing this forum: Google [Bot] and 5 guests

Stuff to buy from the Adafruit store and links to product documentation!


New Products [103]

Raspberry Pi[80]
 
FLORA[23]
 
Bunnie Studios[9]
 
FPGA[1]
 
mbed[11]
Arduino[60]
 
NETduino[14]
 
BeagleBone[24]
 
Android[6]
 
XBee[10]
More Dev Boards[30]


 
BoArduino[8]
 
SpokePOV[4]
 
TV-B-Gone[4]
 
MiniPOV[3]
 
SIM reader[3]
 
Microtouch[5]
 
Clocks & Watches[18]
 
Drawdio[4]
 
Brain Machine[1]
 
Game of Life[2]
 
MintyBoost[2]
More DIY Kits[16]


 
MaKey MaKey[3]
 
Tweet-a-Watt[5]
 
Young Engineers[33]
 
Discover Electronics[2]
 
Snap Circuits[4]
 
littleBits[3]
 
Project packs[8]


 
Breakout Boards[33]
LCDs & Displays[48]
Components & Parts[69]
Batteries & Power[49]
EL Wire/Tape/Panel[52]
LEDs[109]
 
Wireless[14]
Cables[61]
 
Lasers[6]
Sensors/Parts[145]
 
Enclosures/Cases[11]
 
Solar[11]
 
RFID / NFC[13]
Prototyping[70]
 
iDevices[13]
Tools[71]
 
Wearables[39]
 
CNC[37]
 
Robotics[29]
 
3D printing[1]
 
Materials[24]


 
Stickers[41]
 
Skill badges[55]
 
Books[25]
 
Circuit Playground[7]
 
Gift Certificates[4]