ESP32-CAM导入ino项目编译和烧录

文章目录

ESP32 Cam 模式
接线图


导入ino项目
选择INO打开
目录结构

platformio.ini

bash 复制代码
; PlatformIO Project Configuration File
;
;   Build options: build flags, source filter
;   Upload options: custom upload port, speed and extra flags
;   Library options: dependencies, extra library storages
;   Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html

[env:esp32cam]
platform = espressif32
board = esp32cam
framework = arduino
手动转换成C++

https://docs.platformio.org/en/latest/faq/ino-to-cpp.html

源代码
c 复制代码
#include <Arduino.h>

void setup() {
  pinMode(33, OUTPUT); // 将GPIO33设置为输出模式
}

void loop() {
  digitalWrite(33, HIGH); // 设置GPIO33输出高电平
  delay(1000); // 延时等待1000毫秒,即1秒
  digitalWrite(33, LOW); // 设置GPIO33输出低电平
  delay(1000); // 延时等待1000毫秒,即1秒
}
编译

Ctrl+Alt+B

效果图
搞猛一点

33为板载led红灯
4为闪光灯

bash 复制代码
#include <Arduino.h>
void setup()
{
  pinMode(33, OUTPUT); // 将GPIO33设置为输出模式
  pinMode(4, OUTPUT);  // 将GPIO33设置为输出模式
}

void loop()
{
  digitalWrite(33, HIGH); // 设置GPIO33出书输出高电平
  digitalWrite(4, HIGH);  // 设置GPIO33出书输出高电平
  delay(1000);            // 延时等待1000毫秒,即1秒

  digitalWrite(4, LOW);  // 设置GPIO33出书输出低电平
  digitalWrite(33, LOW); // 设置GPIO33出书输出低电平
  delay(1000);           // 延时等待1000毫秒,即1秒
}

效果图有点闪眼睛,自行脑部

其他实验

https://docs.geeksman.com/esp32

相关推荐
芜湖_6 天前
CLion入门2.0(优雅进行STM32和ESP32开发)(船新版本)
stm32·esp32·开发环境·clion
大专生学编程6 天前
基于ESP32-IDF驱动GPIO输出控制LED
嵌入式硬件·esp32·esp-idf
豆奶豆豆奶9 天前
【ESP32】ESP32连接JY61P并通过WIFI发送给电脑
esp32·esp32 wifi
Android小码家12 天前
ESP32云开发二( http + led + lcd)
lcd·esp32·wokwi
flashier15 天前
ESP32学习笔记_FreeRTOS(5)——Mutex
c语言·笔记·学习·esp32·rtos
Grayson_Zheng22 天前
如何用 ESP32-CAM 做一个实时视频流服务器
esp32·arduino·camera·电子信息
小超电子笔记22 天前
ESP32-S3遇见OpenAI:OpenAI官方发布ESP32嵌入式实时RTC SDK
单片机·esp32·openai
houyawei_NO11 个月前
ESP-IDF学习记录(4) ESP-IDF examples目录
学习·esp32
优信电子1 个月前
ESP32 I2S音频总线学习笔记(一):初识I2S通信与配置基础
学习笔记·音频·esp32·i2s