I can't get the IDE to find my library. It is a .h file in the same directory as my ino file. When I try to include the library the IDE doesn't find it.
As you have not posted your program it is difficult to know what the problem is.
If you want use a local .h file you need this style
#include "myFile.h"
...R