I created secrets.h
inside my libraries
folder, but neither
#include <secrets.h>
nor
#include "secrets.h"
works.
Is this supposed to work somehow?
I created secrets.h
inside my libraries
folder, but neither
#include <secrets.h>
nor
#include "secrets.h"
works.
Is this supposed to work somehow?
You'll have to either place the secrets.h
file in with the source files in one particular library or your system's normal include path (first case) or with the source files in your current sketch (second case). It won't be found if placed right in your libraries
folder, as you've discovered.
Is secrets.h located in the libraries folder itself or in a folder within the libraries folder ?
That's it; thank you
Moved it to local/secrets.h
and it's being found now.