180 lines
4.2 KiB
C++
180 lines
4.2 KiB
C++
/***************************************************
|
|
This is an example sketch for our optical Fingerprint sensor
|
|
|
|
Designed specifically to work with the Adafruit BMP085 Breakout
|
|
----> http://www.adafruit.com/products/751
|
|
|
|
These displays use TTL Serial to communicate, 2 pins are required to
|
|
interface
|
|
Adafruit invests time and resources providing this open source code,
|
|
please support Adafruit and open-source hardware by purchasing
|
|
products from Adafruit!
|
|
|
|
Written by Limor Fried/Ladyada for Adafruit Industries.
|
|
BSD license, all text above must be included in any redistribution
|
|
****************************************************/
|
|
|
|
|
|
#include <Adafruit_Fingerprint.h>
|
|
#if ARDUINO >= 100
|
|
#include <SoftwareSerial.h>
|
|
#else
|
|
#include <NewSoftSerial.h>
|
|
#endif
|
|
|
|
#include <Streaming.h>
|
|
|
|
int getFingerprintIDez();
|
|
|
|
// pin #2 is IN from sensor (GREEN wire)
|
|
// pin #3 is OUT from arduino (WHITE wire)
|
|
#if ARDUINO >= 100
|
|
SoftwareSerial mySerial(A5, A4);// tx, rx
|
|
#else
|
|
NewSoftSerial mySerial(2, 3);
|
|
#endif
|
|
|
|
Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial);
|
|
|
|
#include <Servo.h>
|
|
|
|
Servo myservo; // create servo object to control a servo
|
|
|
|
void doorOpen()
|
|
{
|
|
myservo.attach(9);
|
|
for(int i=20; i<100; i++)
|
|
{
|
|
myservo.write(i);
|
|
delay(5);
|
|
}
|
|
myservo.detach();
|
|
}
|
|
|
|
void doorClose()
|
|
{
|
|
myservo.attach(9);
|
|
for(int i=99; i>=20; i--)
|
|
{
|
|
myservo.write(i);
|
|
delay(5);
|
|
}
|
|
myservo.detach();
|
|
}
|
|
|
|
|
|
void setup()
|
|
{
|
|
Serial.begin(38400);
|
|
Serial.println("fingertest");
|
|
|
|
pinMode(A2, OUTPUT);
|
|
|
|
digitalWrite(A2, HIGH);
|
|
delay(1000);
|
|
digitalWrite(A2, LOW);
|
|
|
|
// set the data rate for the sensor serial port
|
|
finger.begin(19200);
|
|
|
|
if (finger.verifyPassword()) {
|
|
Serial.println("Found fingerprint sensor!");
|
|
} else {
|
|
Serial.println("Did not find fingerprint sensor :(");
|
|
while (1);
|
|
}
|
|
Serial.println("Waiting for valid finger...");
|
|
}
|
|
|
|
void loop() // run over and over again
|
|
{
|
|
if(getFingerprintIDez()>=0)
|
|
{
|
|
doorOpen();
|
|
delay(2000);
|
|
doorClose();
|
|
}
|
|
|
|
//delay(1000);
|
|
}
|
|
|
|
uint8_t getFingerprintID() {
|
|
uint8_t p = finger.getImage();
|
|
switch (p) {
|
|
case FINGERPRINT_OK:
|
|
Serial.println("Image taken");
|
|
break;
|
|
case FINGERPRINT_NOFINGER:
|
|
Serial.println("No finger detected");
|
|
return p;
|
|
case FINGERPRINT_PACKETRECIEVEERR:
|
|
Serial.println("Communication error");
|
|
return p;
|
|
case FINGERPRINT_IMAGEFAIL:
|
|
Serial.println("Imaging error");
|
|
return p;
|
|
default:
|
|
Serial.println("Unknown error");
|
|
return p;
|
|
}
|
|
|
|
// OK success!
|
|
|
|
p = finger.image2Tz();
|
|
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.fingerFastSearch();
|
|
if (p == FINGERPRINT_OK) {
|
|
Serial.println("Found a print match!");
|
|
} else if (p == FINGERPRINT_PACKETRECIEVEERR) {
|
|
Serial.println("Communication error");
|
|
return p;
|
|
} else if (p == FINGERPRINT_NOTFOUND) {
|
|
Serial.println("Did not find a match");
|
|
return p;
|
|
} else {
|
|
Serial.println("Unknown error");
|
|
return p;
|
|
}
|
|
|
|
// found a match!
|
|
Serial.print("Found ID #"); Serial.print(finger.fingerID);
|
|
Serial.print(" with confidence of "); Serial.println(finger.confidence);
|
|
}
|
|
|
|
// returns -1 if failed, otherwise returns ID #
|
|
int getFingerprintIDez() {
|
|
uint8_t p = finger.getImage();
|
|
if (p != FINGERPRINT_OK) return -1;
|
|
|
|
p = finger.image2Tz();
|
|
if (p != FINGERPRINT_OK) return -1;
|
|
|
|
p = finger.fingerFastSearch();
|
|
if (p != FINGERPRINT_OK) return -1;
|
|
|
|
// found a match!
|
|
Serial.print("Found ID #"); Serial.print(finger.fingerID);
|
|
Serial.print(" with confidence of "); Serial.println(finger.confidence);
|
|
return finger.fingerID;
|
|
} |