firmware: v13 — test OTA Wemos + pitidos mas distinguibles

- Forzado v13 para verificar que el OTA del ESP8266 funciona
- Pitidos handshake alargados a 180ms para distinguirlos mejor
  del "pitido largo" que sonaban antes (100ms eran muy cortos)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Natxo1000
2026-06-02 15:30:31 +02:00
parent 8f360d352a
commit e6f1cbf17f
6 changed files with 6 additions and 6 deletions

View File

@@ -7,7 +7,7 @@
// ================================================================
// OTA CONFIG
// ================================================================
#define FW_VERSION 12
#define FW_VERSION 13
#define GITEA_HOST "https://git.nacho.myds.me"
#define GITEA_OWNER "Natxo"
#define GITEA_REPO "Arduino-Car"
@@ -135,8 +135,8 @@ void waitForReady() {
espReady = true;
// 2 pitidos: conexión entre placas establecida
for (int i = 0; i < 2; i++) {
digitalWrite(buzzerPin, HIGH); delay(100);
digitalWrite(buzzerPin, LOW); delay(100);
digitalWrite(buzzerPin, HIGH); delay(180);
digitalWrite(buzzerPin, LOW); delay(180);
}
return;
}

View File

@@ -10,7 +10,7 @@
// ================================================================
// OTA CONFIG
// ================================================================
#define FW_VERSION 12
#define FW_VERSION 13
#define GITEA_HOST "https://git.nacho.myds.me"
#define GITEA_OWNER "Natxo"
#define GITEA_REPO "Arduino-Car"

Binary file not shown.

View File

@@ -1 +1 @@
12
13

Binary file not shown.

View File

@@ -1 +1 @@
12
13