I have a project that can compile locally without any issues. But it can’t compile using the cloud compiler, which means I can’t push code to my devices using wifi.
Example:
I have a header in src\Display\Display.h
In my Main.ino I use "#include “Display\Display.h”
The project compiles without any issue with the local compiler, but now with cloud compile with the following error:
fatal error: Display\Display.h: No such file or directory compilation terminated.
What am I doing wrong? Or this there anything I can do to correct this?
The only work around is to move all the files to the src\directory, but that is painful and disorganized.