Electronic – Arduino: why does simple include not work

arduinoprogramming

Hello in my arduino code i simple want to include another file like this:

#include "letters.h"

but it says

 error: letters.h: No such file or directory

the letters.h is definitely there, right next to the ino file from which i compile.

Best Answer

You don't need to include, just call functions from another file. It handles for you.