当前位置:   article > 正文

ESP32单片机环境搭建(VScode + PlatformIO IDE)_platformio ide中新建工程,board没有espressif esp32 dev mod

platformio ide中新建工程,board没有espressif esp32 dev module)

一、环境搭建VScode + PlatformIO IDE

1、官网下载VScode;

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

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

创建工程:

4、硬件

二、LED闪烁

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

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

3、LED代码:

  1. #include <Arduino.h>
  2. #define LED 2 //板载LED在第2脚
  3. void setup() {
  4. // put your setup code here, to run once:
  5. pinMode(LED, OUTPUT);
  6. }
  7. void loop() {
  8. // put your main code here, to run repeatedly:
  9. digitalWrite(LED, HIGH); //高电平
  10. delay(1000); //等待1000毫秒
  11. digitalWrite(LED, LOW); //低电平
  12. delay(1000); //等待1000毫秒
  13. }

4、现象(蓝色LED)D2

三、快捷键设置

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

四、主程序编写说明main.cpp

1、代码:

  1. #include <Arduino.h>
  2. // put function declarations here:
  3. int myFunction(int, int);
  4. void setup() {
  5. // put your setup code here, to run once:
  6. int result = myFunction(2, 3);
  7. }
  8. void loop() {
  9. // put your main code here, to run repeatedly:
  10. }
  11. // put function definitions here:
  12. int myFunction(int x, int y) {
  13. return x + y;
  14. }

2、完结。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/875921
推荐阅读
相关标签
  

闽ICP备14008679号