Hi! If you place the library in a subfolder of the current project, for example, in the "src/NRFLite" folder (Arduino ide supports this library location option), then the project is not compiled - an error is issued for including header files:
#include <nRF24L01.h> in "NRFLite.h" file
and
#include <NRFLite.h> in "NRFLite.cpp" file
If you replace the angular quotes with double quotes, then it compiles normally. I propose to make these changes to the source code.
Hi! If you place the library in a subfolder of the current project, for example, in the "src/NRFLite" folder (Arduino ide supports this library location option), then the project is not compiled - an error is issued for including header files:
#include <nRF24L01.h>
in "NRFLite.h" file and#include <NRFLite.h>
in "NRFLite.cpp" fileIf you replace the angular quotes with double quotes, then it compiles normally. I propose to make these changes to the source code.