Is this not allowed in custom libraries in Arduino?
In the IDE or in Eclipse? The same answer might not apply in both cases.
Unless Lib2 is at a different level than Lib3, then your include statement is wrong, for the IDE. It is not necessary to define the path to the header file, only the name of the header file.
Is this not allowed in custom libraries in Arduino?
In the IDE or in Eclipse? The same answer might not apply in both cases.
Unless Lib2 is at a different level than Lib3, then your include statement is wrong, for the IDE. It is not necessary to define the path to the header file, only the name of the header file.
In the Arduino IDE.
In eclipse, its working perfectly, i get my intellisense off of lib2.
The problem is in Arduino.
So are you saying that in eclipse I should just have: #include "Lib2.h"?
I can do that, I just wont be able to build in eclipse, right?