/* FPS_Enroll.ino - Library example for controlling the GT-511C3 Finger Print Scanner (FPS) Created by Josh Hawley, July 23rd 2013 Licensed for non-commercial use, must include this license message basically, Feel free to hack away at it, but just give me credit for my work =) TLDR; Wil Wheaton's Law This simple sketch turns the LED on and off similar to the Arduino blink sketch. It is used to show that communications are working. */ #include "FPS_GT511C3.h" #include "SoftwareSerial.h" FPS_GT511C3 fps(11,12); void setup() { Serial.begin(9600); while (!Serial) { // attend l'ouverture du terminal série (nécessaire pour cartes LEONARDO } fps.UseSerialDebug = true; // active le debugage fps.Open(); } void loop() { // FPS Blink LED Test fps.SetLED(true); // turn on the LED inside the fps Serial.println("led"); delay(1000); fps.SetLED(false);// turn off the LED inside the fps delay(1000); }