I just finished building a program for uno and tried to compile it, I build custom libraries to accommodate everything but the files are not being seen.
I did have that error, but now blink is compiling fine, but I am still having that issue with my main program. I created custom libraries for it but for some reason it's not seeing them.
watsonj80:
I did have that error, but now blink is compiling fine, but I am still having that issue with my main program. I created custom libraries for it but for some reason it's not seeing them.
Did you re-start the IDE after installing the libraries into your libraries folder?
Did you name the library folder the same as the main .h file?
Here is a list of #include files I am trying to use, each has a folder in arduino/library/.... each file includes a .cpp and .h file. from what I have found that is all correct. what am i missing?
Usually this sort of problem turns out to be a typographical error. Make sure that the referenced file is an exact match for the file name and the folder name.
watsonj80:
I have seen some references to keyword.txt file but I am not sure how to build it, what program, or where to place it.
It's only used to apply colors to function names and global variables in the IDE editor. It is not necessary and won't cause your error. A typographical error would cause your error. Since you are the only person who can see the contents of your libraries folder you are the only one who can see if there is an error in spelling or capitalization of your folders, files, or sketch source.
How about you package your sketch and your libraries in a .zip file and attach them to a post here. Maybe I can reproduce the problem and spot something in the 99% of the code you have not shown.
I have seen this before and I believe it is the ongoing pre processor issue. The compiler see / "using " x but you also get "cannot be found" message. Try to move all headers in question someplace else,perhaps build another "local" file/tab. I really do not remember how I resolved my problem.