ESP32+Arduino环境搭建教程 合宙ESP32C3

 2025-01-07  阅读 355  评论 5  点赞 449

摘要:该文指导如何在ArduinoIDE中添加ESP32支持,包括设置开发板管理器地址,安装ESP32开发板,选择对应型号,并提供了一个简单的LED灯闪烁程序作为测试。特别提到使用合宙ESP32C3开发板时需将flashmode设为DIO。

1.在arduino官网下载安装包并安装.

ESP32+Arduino环境搭建教程 合宙ESP32C3

下载地址:https://www.arduino.cc/en/software

2.安装Arduino对ESP32支持

1.添加ESP32开发板管理器地址

点击文件->首选项->其他开发板管理器地址. 添加ESP32的地址

2.安装ESP32开发板管理器

点击左侧的开发板管理器搜索ESP32找到并点击安装。

3.选择对应的开发板型号

点击工具->开发板->ESP32->选择自己的型号

我这里提供一个简单的LED灯闪烁的程序作为测试程序

const int led0 = 12;
const int led1 = 13;
 
void setup() {
    // put your setup code here, to run once:
    pinMode(led0, OUTPUT);
    pinMode(led1, OUTPUT);
}
 
void loop() {
    // put your main code here, to run repeatedly:
    digitalWrite(led0, HIGH);
    digitalWrite(led1, HIGH);
    delay(500);
    digitalWrite(led0, LOW);
    digitalWrite(led1, LOW);
    delay(500);
}

标签:esp32

评论列表:

  •   danney
     发布于 11天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0274秒, 内存占用1.91 MB, 访问数据库29次

冀ICP备19034377号