Just starting out with platformio and have run into an issue. I have a small local library that I use and when I move it into the private lib directory for my project, platformio seems to not find it.
Everything is fine when I put the mylib.h and mylib.cpp files in the main src directory, but once I move it out to lib/mylib/ and update the include to <mylib.h> I get the following error:
'function_from_mylib' was not declared in this scope
The strange thing is I have two other private libraries in lib/ that don’t seem to have the same issue…