When I use #include in my code, I get an error saying it is not able to find the file I am referencing. A screenshot of my code and the error is attached.
Post code, not pictures of code.
Post error messages, not pictures of error messages.
Did you install the libraries?
change to < & > to "
Be carefull as the filenames are case-sensitive.
To be sure you use the right syntax, use the menu instead of hardcoding your includes.
See menu: sketch\include library\name of your libary.
Best Regards,
Johi.
If the header file is located in the same directory as your code, you need to use #include "HeaderFile.h" instead of #include <HeaderFile.h>. See #include reference
