I have a Platformio.ini file with one dependency:
[env:ATmega328P]
platform = atmelavr
board = ATmega328based
framework = gaverino
lib_deps =
gyverlibs/GyverStepper@^2.7
This library was successfully downloaded, but when i include it, i got an error that file not found.
#include "GyverStepper.h"
After a few hours i realized how to fix it. I added build_flags = -I".pio/libdeps/ATmega328P/**"
. Intellisence has no more errors, but an error occurs during build:
src\main.cpp:1:10: fatal error: GyverStepper.h: No such file or directory
Am I doing something wrong, or should the platformio itself include the files that I specify?