feat: module réseau WiFi STA/AP, mDNS, OTA

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-23 16:24:23 +02:00
parent 9aac0f1b94
commit d180f72bbe
3 changed files with 116 additions and 1 deletions
+3 -1
View File
@@ -1,7 +1,7 @@
#include <Arduino.h>
#include "config.h"
#include "network.h"
// ── Définitions des variables globales ─────────────────────────────
SondeConfig sondesConfig[NB_SONDES] = {
{ "T°C Ext", "maison/jardin/ext/temperature", 60000, 0.2f },
{ "T°C Serre", "maison/jardin/serre/temperature", 60000, 0.1f },
@@ -15,7 +15,9 @@ NetworkStatus netStatus = {};
void setup() {
Serial.begin(115200);
Serial.println("[BOOT] esp_jardin démarrage...");
network_init();
}
void loop() {
network_update();
}