Files
Arduino-Car/Esp32Cam/Esp32Cam.ino
Natxo1000 dacc913c5a Coche RC con OTA via Gitea
- ESP32-CAM: servidor web, stream MJPEG, control motores via Serial
- ESP8266/Wemos D1: control motores DC, servos pan/tilt, buzzer
- OTA automatico en arranque via Gitea (HTTPS, WiFiClientSecure)
- Interfaz web rediseñada: full-screen, tema gaming, reconexion de stream
- partitions.csv con esquema dual OTA (2x1.75MB) para ESP32-CAM
- firmware/ con version.txt inicial para cada placa

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-02 09:52:51 +02:00

142 lines
4.5 KiB
C++

#define CAMERA_DEBUG 0
#include "esp_camera.h"
#include <WiFi.h>
#include <WiFiManager.h>
#include <HTTPClient.h>
#include <HTTPUpdate.h>
#include <WiFiClientSecure.h>
#include "board_config.h"
// ================================================================
// OTA CONFIG
// ================================================================
#define FW_VERSION 1
#define GITEA_HOST "https://git.nacho.myds.me"
#define GITEA_OWNER "Natxo"
#define GITEA_REPO "Arduino-Car"
#define GITEA_BRANCH "main"
// ================================================================
const char *ssid = "Natxo";
const char *password = "Suprak1llm1ndS23S";
void startCameraServer();
void setupLedFlash();
// ── OTA: comprueba si hay firmware nuevo y actualiza si hace falta ──
static void checkOTA() {
WiFiClientSecure client;
client.setInsecure(); // cert Let's Encrypt/autofirmado — OK para LAN privada
HTTPClient http;
String base = String(GITEA_HOST) + "/" + GITEA_OWNER + "/" + GITEA_REPO
+ "/raw/branch/" + GITEA_BRANCH + "/firmware/esp32cam/";
http.begin(client, base + "version.txt");
http.setTimeout(5000);
int code = http.GET();
String body;
if (code == HTTP_CODE_OK) body = http.getString();
http.end();
if (code != HTTP_CODE_OK) return; // Gitea no disponible, continúa normal
int remoteVer = body.trim().toInt();
if (remoteVer <= FW_VERSION) return; // ya tenemos la última versión
// Hay versión nueva → descargar y flashear
WiFiClientSecure updateClient;
updateClient.setInsecure();
httpUpdate.setFollowRedirects(HTTPC_STRICT_FOLLOW_REDIRECTS);
httpUpdate.rebootOnUpdate(true);
httpUpdate.update(updateClient, base + "firmware.bin");
// Si llega aquí, el update falló — continúa arranque normal
}
void setup() {
Serial.begin(9600);
Serial.setDebugOutput(false);
// ── Cámara ──────────────────────────────────────────────────────
camera_config_t config;
config.ledc_channel = LEDC_CHANNEL_0;
config.ledc_timer = LEDC_TIMER_0;
config.pin_d0 = Y2_GPIO_NUM;
config.pin_d1 = Y3_GPIO_NUM;
config.pin_d2 = Y4_GPIO_NUM;
config.pin_d3 = Y5_GPIO_NUM;
config.pin_d4 = Y6_GPIO_NUM;
config.pin_d5 = Y7_GPIO_NUM;
config.pin_d6 = Y8_GPIO_NUM;
config.pin_d7 = Y9_GPIO_NUM;
config.pin_xclk = XCLK_GPIO_NUM;
config.pin_pclk = PCLK_GPIO_NUM;
config.pin_vsync = VSYNC_GPIO_NUM;
config.pin_href = HREF_GPIO_NUM;
config.pin_sccb_sda = SIOD_GPIO_NUM;
config.pin_sccb_scl = SIOC_GPIO_NUM;
config.pin_pwdn = PWDN_GPIO_NUM;
config.pin_reset = RESET_GPIO_NUM;
config.xclk_freq_hz = 20000000;
config.frame_size = FRAMESIZE_UXGA;
config.pixel_format = PIXFORMAT_JPEG;
config.grab_mode = CAMERA_GRAB_LATEST; // siempre el frame más reciente → menos lag
config.fb_location = CAMERA_FB_IN_PSRAM;
config.jpeg_quality = 12;
config.fb_count = 1;
if (config.pixel_format == PIXFORMAT_JPEG) {
if (psramFound()) {
config.jpeg_quality = 10;
config.fb_count = 2;
} else {
config.frame_size = FRAMESIZE_SVGA;
config.fb_location = CAMERA_FB_IN_DRAM;
config.fb_count = 2;
config.jpeg_quality = 18;
}
}
esp_err_t err = esp_camera_init(&config);
if (err != ESP_OK) return;
sensor_t *s = esp_camera_sensor_get();
if (s->id.PID == OV3660_PID) {
s->set_vflip(s, 1);
s->set_brightness(s, 1);
s->set_saturation(s, -2);
}
if (config.pixel_format == PIXFORMAT_JPEG) {
s->set_framesize(s, FRAMESIZE_QVGA);
}
#if defined(CAMERA_MODEL_M5STACK_WIDE) || defined(CAMERA_MODEL_M5STACK_ESP32CAM)
s->set_vflip(s, 1);
s->set_hmirror(s, 1);
#endif
#if defined(CAMERA_MODEL_ESP32S3_EYE)
s->set_vflip(s, 1);
#endif
#if defined(LED_GPIO_NUM)
setupLedFlash();
#endif
// ── WiFi ─────────────────────────────────────────────────────────
WiFiManager wm;
wm.setDebugOutput(false);
if (!wm.autoConnect("CocheRC", "12345678")) {
ESP.restart();
}
// ── OTA (después de WiFi, antes de iniciar el servidor) ──────────
checkOTA();
// ── Servidor cámara ───────────────────────────────────────────────
startCameraServer();
}
void loop() {
delay(10000);
}