Linux VSCode ESP_IDF 环境搭建

VSCode插件安装

首先安装好VSCode并启动

点击 Extensions(Ctrl + Shift + X),搜索插件 Espressif IDF,点击 install(安装)

安装好 Espressif IDF 插件以后,会显示 Welcome to the extension setup 界面

这里注意不要点下去安装了,先把代理配好,不然等会安装不上

VSCode设置代理

然后我们回到刚刚的界面继续

点击EXPRESS,一路默认,等安装完

运行示例项目

F1,Show Examples Projects,回车

Use current ESP-IDF,回车

选择hello_world,右边点Create project using example hello_world

选个项目保存路径

完成之后,F1,Build your project

会自动build,等完成

F1,Select port to use,选择你的开发板端口(可以ls /dev/tty)查看,我的是/dev/ttyUSB0,然后选应用在当前项目上

F1,flash,选择ESP-IDF:Build, Flash and start a monitor on your device

然后就烧录进去了

附上我的运行输出截图