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:
@@ -7,7 +7,7 @@
|
|||||||
// ================================================================
|
// ================================================================
|
||||||
// OTA CONFIG
|
// OTA CONFIG
|
||||||
// ================================================================
|
// ================================================================
|
||||||
#define FW_VERSION 12
|
#define FW_VERSION 13
|
||||||
#define GITEA_HOST "https://git.nacho.myds.me"
|
#define GITEA_HOST "https://git.nacho.myds.me"
|
||||||
#define GITEA_OWNER "Natxo"
|
#define GITEA_OWNER "Natxo"
|
||||||
#define GITEA_REPO "Arduino-Car"
|
#define GITEA_REPO "Arduino-Car"
|
||||||
@@ -135,8 +135,8 @@ void waitForReady() {
|
|||||||
espReady = true;
|
espReady = true;
|
||||||
// 2 pitidos: conexión entre placas establecida
|
// 2 pitidos: conexión entre placas establecida
|
||||||
for (int i = 0; i < 2; i++) {
|
for (int i = 0; i < 2; i++) {
|
||||||
digitalWrite(buzzerPin, HIGH); delay(100);
|
digitalWrite(buzzerPin, HIGH); delay(180);
|
||||||
digitalWrite(buzzerPin, LOW); delay(100);
|
digitalWrite(buzzerPin, LOW); delay(180);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
// ================================================================
|
// ================================================================
|
||||||
// OTA CONFIG
|
// OTA CONFIG
|
||||||
// ================================================================
|
// ================================================================
|
||||||
#define FW_VERSION 12
|
#define FW_VERSION 13
|
||||||
#define GITEA_HOST "https://git.nacho.myds.me"
|
#define GITEA_HOST "https://git.nacho.myds.me"
|
||||||
#define GITEA_OWNER "Natxo"
|
#define GITEA_OWNER "Natxo"
|
||||||
#define GITEA_REPO "Arduino-Car"
|
#define GITEA_REPO "Arduino-Car"
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
12
|
13
|
||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
12
|
13
|
||||||
Reference in New Issue
Block a user