ESP32单片机环境搭建(VScode + PlatformIO IDE)

一、环境搭建(VScode + PlatformIO IDE

1、官网下载VScode;

2、安装最新的插件(C/C++、PlatformIO IDE、python、Chinese);

ESP32单片机环境搭建(VScode + PlatformIO IDE)_第1张图片

3、在PlatformIO IDE中新建工程:Platforms——Projects——Create New Project——输入Name(ESP32demo)、Board(Espressif ESP32 Dev Module)、Framework(Arduino)——取消勾选——将新建文件夹保存到桌面或者其他路径中——确认。

ESP32单片机环境搭建(VScode + PlatformIO IDE)_第2张图片

创建工程:

ESP32单片机环境搭建(VScode + PlatformIO IDE)_第3张图片

4、硬件

ESP32单片机环境搭建(VScode + PlatformIO IDE)_第4张图片

二、LED闪烁

1、新建.cpp文件——编写LED闪烁代码——选择端口——编译——下载。

ESP32单片机环境搭建(VScode + PlatformIO IDE)_第5张图片

2、编译;下载;端口选择。

ESP32单片机环境搭建(VScode + PlatformIO IDE)_第6张图片

3、LED代码:

#include 
#define LED 2   //板载LED在第2脚
void setup() {
  // put your setup code here, to run once:
  pinMode(LED, OUTPUT);
}
void loop() {
  // put your main code here, to run repeatedly:
  digitalWrite(LED, HIGH);  //高电平
  delay(1000);              //等待1000毫秒
  digitalWrite(LED, LOW);   //低电平
  delay(1000);              //等待1000毫秒
}

4、现象(蓝色LED)D2

ESP32单片机环境搭建(VScode + PlatformIO IDE)_第7张图片

三、快捷键设置

       前进;后退;编译;下载。

ESP32单片机环境搭建(VScode + PlatformIO IDE)_第8张图片

你可能感兴趣的:(ESP32单片机,单片机,物联网)