arduino GitHub:https://github.com/arduino
espressif GitHub:https://github.com/espressif
platformio GitHub:https://github.com/platformio
platformio 资源搜索:https://registry.platformio.org/search
下载VS Code
安装比较简单,这里就不赘述了
在VS Code 中搜索 platformio
点击安装即可
platformio 打开
platformio 面板
新建工程
注意:
工程目录
测试程序
在 src/main.cpp 文件中添加下面程序
#include <Arduino.h>
void setup() {
// put your setup code here, to run once:
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}
编译下载
下载慢的原因主要是因为网络不好,因为服务器都在国外,当然文件也比较大。所以首次创建项目需要耐心等待
更改下载仓库
在 “C:\Users\Administrator.platformio\penv\pip.conf” 文件中添加一下类容
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host = mirrors.aliyun.com
我测试过,没有什么效果,可能是我这里的网本来就不好,详细测试方式看这位大佬的笔记
离线安装
这位大佬采用了离线安装的方式,我也没测试过,需要的小伙伴可以自己研究一下。
替换平台和包文件
这个和离线安装的方式差不多,都是需要找到已经下载的平台文件和包文件,然后进行替换。
下载平台文件
在platformio GitHub 中下载自己需要的环境
下载完成后,将其解压放在路径 “C:\Users\Administrator.platformio\platforms” 下,打开VS Code,即可看到平台已经安装完成,如下图所示:
工具包文件
点击对应的平台,可以查看需要的工具包及版本,如下图所示:
注意:
创建文件没进度条
这里就比较坑了,因为首次创建项目时,下载的文件还是比较大的,一共有几个G的样子,但是又没进度条,让我没等下去的耐心了,这里有一个间接的办法。
我们可以通过查看 “.platformio”文件的大小来查看下载的速度,如下图所示:
platformIO环境安装_kimiyang123的博客-CSDN博客_platformio安装:https://blog.csdn.net/kimiyang123/article/details/110871196
基本使用 - 新建项目 - 知乎:https://zhuanlan.zhihu.com/p/78722930
解决一直无法创建工程问题 - 知乎:https://zhuanlan.zhihu.com/p/444466189>
Visual Studio Code PlatformIo IDE 新建项目下载慢的解决办法:https://blog.csdn.net/ngl272/article/details/124776171
手机扫一扫
移动阅读更方便
你可能感兴趣的文章