Radio subida

This commit is contained in:
Álvaro Alcántara Ramírez 2026-08-03 21:38:32 +02:00
parent 5f81e54793
commit f0db3a8aeb
147 changed files with 11343 additions and 0 deletions

View file

@ -0,0 +1,29 @@
#include <Arduino.h>
#include "bridge.hpp"
#include "config.hpp"
void setup()
{
Serial.begin(115200);
delay(700);
Serial.println();
Serial.println("============================================");
Serial.println(" WROOM-32U intermediario UART / ESP-NOW LR");
Serial.println(" DEBUG PERMANENTE ACTIVADO");
Serial.println("============================================");
if (!bridge_init()) {
Serial.println("FALLO iniciando el intermediario");
while (true) {
Serial.println("El intermediario sigue detenido por un error de inicio.");
delay(2000);
}
}
}
void loop()
{
bridge_process();
}