Hello all, I am having trouble installing a library I made for the ID12 RFID reader. I have both the .h and .cpp files created but I want to actually start using them and debug any errors I have in the library. I stuck the library in this directory:
\Arduino\libraries\ID12Reader
I am able to import the library (though the text color does not change unlike some other libraries). I went to see if I could try out this code as a start; I am providing a value for the reset pin:
#include <ID12Reader.h>
void setup()
{
ID12Reader myRFID(24);
}void loop()
{}
But when I try to verify the syntax, I get an error for undefined reference for my constructor and destructor. Any hints? I have toying with this whole thing for a couple of hours and got this far.
ID12Reader.zip (1.65 KB)