赞
踩
在这里搜索所需要的库函数进行添加到工程里
1.准备好所需要的库文件
2.打开工程文件夹
完成以上4步后,重启VScode,即可完成库文件添加
当创建完工程后,在该工程中添加库,方法2是添加全局库的方法,添加后其他工程也可以直接调用,方法3添加后只适用于当前工程
1.打开当前工程文件夹
把需要用到的库文件直接放进lib中就行不会报错
官方例程
For example, see a structure of the following two libraries `Foo` and `Bar`: |--lib | | | |--Bar | | |--docs | | |--examples | | |--src | | |- Bar.c | | |- Bar.h | | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html | | | |--Foo | | |- Foo.c | | |- Foo.h | | | |- README --> THIS FILE | |- platformio.ini |--src |- main.c and a contents of `src/main.c`: #include <Foo.h> #include <Bar.h> int main (void) { }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。