Using a custom library in a custom library

Hello,
I’m new to platformio so sorry if this question has already been answered, but I can’t seem to find a solution that works for me.

I’m trying to import a library into a file that is also in the lib folder, but it can’t seem to see it.
In this case I have a file with a bunch of bitmap images but this seems like a fairly normal thing to want to do with other functions.

Please let me know if I am missing something obvious.
Thanks.

Changing #include <bitmaps.h> (global include) to #include "bitmaps.h" (local include) should do the trick.

1 Like

Thank you so much! I wasn’t aware of local vs global includes. That fixed it.

1 Like