1

let's suppose I have folder called AES, in this folder is file "AES.ino" where is code and folder "AESLib" what is library. In "AESLib" is file called "AESLib.h",

now when I try to include AESLib.h with

#include "AESLib/AESLib.h" 

in my AES.ino, then Arduino command line tool complain that its not able to find "AESLib.h"

Where could be the catch?

Thanks

xrep
  • 13
  • 3

2 Answers2

0

I have the same problem using the Arduino IDE 1.5.6 beta. Adding the library(s) using the menu (Sketch->include library->something) makes it work until the IDE is closed.

0

Maybe this similar post is what you are looking for. In your case, you should use the path to the sketch folder as 'PROJECT_ROOT'.

Here's the link: https://arduino.stackexchange.com/a/9575/7741

Hope it helps.