From b1a31d00974180cf1f77d3d42d315bf0e3f7d23f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9drix?= Date: Sun, 26 Apr 2026 18:58:37 +0200 Subject: [PATCH] =?UTF-8?q?Corriger=20noms=20des=20biblioth=C3=A8ques=20da?= =?UTF-8?q?ns=20le=20gestionnaire=20Arduino?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit AsyncTCP → ESP32AsyncTCP, installation directe depuis le gestionnaire sans téléchargement ZIP. Co-Authored-By: Claude Sonnet 4.6 --- ...e WiFi - annexe installation Arduino IDE.md | 29 +++++++------------ ...ESP32 - balance connectée WiFi - projet.md | 2 +- 2 files changed, 11 insertions(+), 20 deletions(-) diff --git a/notes/technologie/HX711 ESP32 - balance connectée WiFi - annexe installation Arduino IDE.md b/notes/technologie/HX711 ESP32 - balance connectée WiFi - annexe installation Arduino IDE.md index d498e2d..71ccf62 100644 --- a/notes/technologie/HX711 ESP32 - balance connectée WiFi - annexe installation Arduino IDE.md +++ b/notes/technologie/HX711 ESP32 - balance connectée WiFi - annexe installation Arduino IDE.md @@ -62,11 +62,11 @@ Si la compilation et le téléversement réussissent sans erreur, l'environnemen À installer via **Outils → Gérer les bibliothèques** : -| Bibliothèque | Auteur | Rechercher | -|---------------------|------------------|-----------------------------------| -| HX711 | bogde | `HX711 bogde` | -| ESPAsyncWebServer | Mathieu Carbou | `ESPAsyncWebServer mathieucarbou` | -| AsyncTCP | Mathieu Carbou | `AsyncTCP mathieucarbou` | +| Nom dans le gestionnaire | Auteur | Usage | +|--------------------------|----------------|-----------------------------| +| HX711 | bogde | Lecture du capteur | +| ESPAsyncWebServer | Mathieu Carbou | Serveur web asynchrone | +| ESP32AsyncTCP | Mathieu Carbou | Dépendance d'AsyncWebServer | > ⚠️ Ne pas installer la version de `me-no-dev` — elle n'est plus maintenue et provoque une erreur de compilation avec le SDK ESP32 v3.x (voir ci-dessous). @@ -96,21 +96,12 @@ Désinstaller la version `me-no-dev` et installer le fork maintenu via ZIP (ces 2. Rechercher `ESPAsyncWebServer` → si la version `me-no-dev` est installée, cliquer **Désinstaller** 3. Faire de même pour `AsyncTCP` de `me-no-dev` -**Étape 2 — Télécharger les ZIPs depuis GitHub** +**Étape 2 — Installer depuis le gestionnaire Arduino** -| Bibliothèque | URL | -|-------------------|--------------------------------------------------| -| AsyncTCP | https://github.com/mathieucarbou/AsyncTCP | -| ESPAsyncWebServer | https://github.com/mathieucarbou/ESPAsyncWebServer | +1. **Outils → Gérer les bibliothèques** +2. Rechercher `ESP32AsyncTCP` → installer **ESP32AsyncTCP by Mathieu Carbou** +3. Rechercher `ESPAsyncWebServer` → installer **ESPAsyncWebServer by Mathieu Carbou** -Sur chaque page : bouton **Code → Download ZIP** - -**Étape 3 — Installer dans Arduino IDE** - -1. **Croquis → Inclure une bibliothèque → Ajouter la bibliothèque .ZIP...** -2. Sélectionner le fichier `AsyncTCP-main.zip` → OK -3. Répéter avec `ESPAsyncWebServer-main.zip` - -**Étape 4 — Relancer la compilation** +**Étape 3 — Relancer la compilation** Le fork de Mathieu Carbou est compatible SDK ESP32 v3.x et maintenu activement. diff --git a/notes/technologie/HX711 ESP32 - balance connectée WiFi - projet.md b/notes/technologie/HX711 ESP32 - balance connectée WiFi - projet.md index bd05ac9..2f30b91 100644 --- a/notes/technologie/HX711 ESP32 - balance connectée WiFi - projet.md +++ b/notes/technologie/HX711 ESP32 - balance connectée WiFi - projet.md @@ -31,7 +31,7 @@ L'ESP32 lit la cellule de charge via le HX711, crée un réseau WiFi auquel un s |-----------------------|------------------|--------------------------------| | `HX711` | bogde | Lecture du capteur | | `ESPAsyncWebServer` | Mathieu Carbou | Serveur web asynchrone | -| `AsyncTCP` | Mathieu Carbou | Dépendance d'AsyncWebServer | +| `ESP32AsyncTCP` | Mathieu Carbou | Dépendance d'AsyncWebServer | `WiFi`, `DNSServer` et `Preferences` sont intégrés au SDK ESP32 (pas d'installation nécessaire).