I will be glad to help! Can’t add libraries!
Throws an error - #include errors were detected. Change includePath. Wavy lines are disabled for this translation unit
- You have to combine all used libraries into one
lib_deps
statement - For a library stored in a git repository, you just give the link to the repository as it appears in “Code”, don’t give the link to a single .h file
So you would have to write
lib_deps =
asukiaaa/SomeSerial@^1.1.3
https://github.com/amperka/gprs-shield.git
in the platformio.ini
, like the documentation says.
Thank you so much!!!