当前位置:   article > 正文

platformio添加外部库文件方法_platformio添加自己的库

platformio添加自己的库

方法1


在这里搜索所需要的库函数进行添加到工程里

方法2(常用)

1.准备好所需要的库文件
2.打开工程文件夹
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
完成以上4步后,重启VScode,即可完成库文件添加

方法3(常用)

当创建完工程后,在该工程中添加库,方法2是添加全局库的方法,添加后其他工程也可以直接调用,方法3添加后只适用于当前工程
1.打开当前工程文件夹
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

方法4(更新)

把需要用到的库文件直接放进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)
{

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/325077
推荐阅读
相关标签
  

闽ICP备14008679号