I am using Arduino mega ADK, and I connect the TX and RX of the sensor to A8 and A9.
However when I tried to upload the blink example I get the following error message
Arduino: 1.6.4 (Mac OS X), Board: "Arduino Mega ADK"
sketch_dec23b.ino:1:25: fatal error: FPS_GT511C3.h: No such file or directory
Although when I check the library folder, I found the file (FPS_GT511C3.h)
Also, the LED of the sensor is not ON
Below is the arduino code
#include "FPS_GT511C3.h"
#include "SoftwareSerial.h"
FPS_GT511C3 fps(A8, A9);
void setup()
{
Serial.begin(9600);
fps.UseSerialDebug = true; // so you can see the messages in the serial debug screen
fps.Open();
}
void loop()
{
// FPS Blink LED Test
fps.SetLED(true);
delay(1000);
fps.SetLED(false);
delay(1000);
}/code]
Please I need the help in this matter, thanks
I upzipped the folder and paste it at this location
documents / arduino / libraries.
and when I open arduino program version 1.6.4, the three files for the library were available at file / examples. Now it's taking long time to upload, and it's still not uploaded.
When I tried other version of arduino, it get uploaded but I get different message at the serial port: starting modem test ..." - contents that are not written in the file "