So I wrote a library that can read IR remotes and gives the user the name of the button pressed. In order to get the names, I wrote another application that runs on a PC and makes two header files containing all the stored codes and their user-generated names. Right now I have it saving the files in the same directory as my library, but that means that user can't have two different sets of codes that stick with the program, it is just one set that each program they write uses.
I would like to put the header files in with their .pde file, but my problem is that I don't know how the library can read from the sketchbook, in the same folder as the calling program. Is this possible?
Using <> tells the compiler to search everywhere, "" looks in the curr. directory, only.
I was under the impression that the brackets method was a full subset of the quotes, and the quotes just told it to look in the current directory. Nevertheless, I have tried to simply include it with no results.