ESP32 Ardiono VScode PlatformIO开发环境

ESP32 Ardiono VScode PlatformIO

  • 前言
  • 一、ESP32 Arduino开发
    • 1.1安装arduino
    • 1.2开发板管理
  • 二、VScode 安装、插件管理安装PlatformIO
    • 2.1VScode安装
    • 2.2 VScode组件安装
    • 2.3安装过程
    • 2.4安装完成
  • 三、新建工程
    • 3.1 重启VScode
    • 3.2 加入Arduino文件
    • 3.3 代码测试
    • 3.4 编译下载运行监控

前言

之前就写过arduino esp32开发的环境编译、过于累赘、后面经过多次尝试操作,总结出以下这套无敌简单的开发环境安装方法;跟着顺序操作、无障碍

一、ESP32 Arduino开发

1.1安装arduino

像QQ一样安装软件,可以参考我的博客《ESP32的arduino开发环境搭建》,只需要安装好arduino就可以了!

1.2开发板管理

在arduino的界面上,选【工具】–>【开发本】选项–>【开发板管理器】,搜索ESP32,注意是【开发板管理器】不是【库管理】,我之前就记忆错误由于这个原因;等待安装ESP32开发板就OK了!你就可以在开发板选项中找到【ESP32 Dev Module】
(以上步骤省去,直接装VS code也是可以的,但是arduino开发很多时候仍是离不开arduino ide的工具,所以读者建议还是安装吧)

二、VScode 安装、插件管理安装PlatformIO

开发环境:Win10
必装python版本:2.7.14(只能是2.7.14)
提供下载链接

2.1VScode安装

像QQ一样安装软件,可以参考别人的博客VS code安装
ESP32 Ardiono VScode PlatformIO开发环境_第1张图片

2.2 VScode组件安装

在VScode插件中,安装Platform、arduino、python等等;之后开发环境都不用关联,可以直接使用
python版本必须2.7.14
ESP32 Ardiono VScode PlatformIO开发环境_第2张图片

2.3安装过程

注意这是下载过程,要等几个钟很正常
ESP32 Ardiono VScode PlatformIO开发环境_第3张图片

2.4安装完成

在这里插入图片描述

三、新建工程

3.1 重启VScode

ESP32 Ardiono VScode PlatformIO开发环境_第4张图片

3.2 加入Arduino文件

ESP32 Ardiono VScode PlatformIO开发环境_第5张图片

3.3 代码测试

#include 
#define LED_PIN 33
void setup() {
  // put your setup code here, to run once:
  pinMode(LED_PIN,OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
  digitalWrite(LED_PIN,HIGH);
  delay(1000);
  digitalWrite(LED_PIN,LOW);
  delay(1000);
}

3.4 编译下载运行监控

ESP32 Ardiono VScode PlatformIO开发环境_第6张图片

你可能感兴趣的:(VS,code,Platform)