can Arduino IDE point to a file in another directory? If yes how? With my code
../../main.h
the compile fails.
Error:
In file included from D:\Eigene Dateien\Entwicklung\SIGNALDuino_MR\src\arduino-ide\SIGNALDuino\SIGNALDuino.ino:1:0:
main.h:1:1: error: expected unqualified-id before '.' token
../../main.h
^
exit status 1
expected unqualified-id before '.' token
--------------- structure ------------------
TEST
|--main.h
|-----Ordner 1
|-----Ordner 3
|--files.h
|-----Ordner 2
|-----Ordner 4
#include "../../main.h"– Juraj Feb 12 '20 at 12:44:-( `#include "../../main.h"
compilation terminated.
exit status 1 ../../main.h: No such file or directory`
– user11528497 Feb 12 '20 at 13:02But my plan is backwards. Jump back directories. Based on the example, from TimerLib.h to MCUa.ino
– user11528497 Feb 12 '20 at 15:06#include ../../main.hor#include "../../main.h"– user11528497 Feb 12 '20 at 15:14