Mon problème
J’ai acheté ces cartes ESP32 : Carte De Développement Esp32, Type-c Usb Ch340c Cp2102, Wifi + Bluetooth, Consommation D'énergie Ultra-faible, Dual Core Esp32-devkitc-32 Esp-wroom - AliExpress
J’essaye de les connecter sur mon Wifi avec ESPHome, mais j’ai l’erreur ‹ Auth Expired › :
[D][wifi:387]: Starting scan...
[D][wifi:402]: Found networks:
[I][wifi:446]: - 'FreeboxCR' [redacted]▂▄▆█
[D][wifi:447]: Channel: 11
[D][wifi:448]: RSSI: -81 dB
[D][wifi:451]: - [redacted] [redacted]▂▄▆█
[D][wifi:451]: - [redacted] [redacted]▂▄▆█
[I][wifi:258]: WiFi Connecting to 'FreeboxCR'...
[W][wifi_esp32:504]: Event: Disconnected ssid='FreeboxCR' bssid=[redacted] reason='Auth Expired'
[W][wifi:550]: Error while connecting to network.
[I][wifi:258]: WiFi Connecting to 'FreeboxCR'...
Sachant que :
- Avec l’ESP32, elle se connecte sur mon réseau partagé Android
- Avec un nodemcu 8266, cela se connecte sur ma freebox avec le même fichier de configuration (donc, même fichier Secret)
Ma configuration
Sur ma freebox, je suis en Authentification WPA2 - AES
Voici ma config yaml, mais rien d’extraordinaire ici :
esphome:
name: esp32-1
friendly_name: esp32-1
esp32:
board: esp32dev
framework:
type: arduino
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: "m1Gi+F8zmGKPYMHdMuGomyX4GiKJkTXgZNW+GwCb688="
ota:
password: "2c5eae9fa059167c7a9f82e75455ae89"
wifi:
networks:
- ssid: !secret wifi_ssid_cyp
password: !secret wifi_password_cyp
- ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Esp32-1 Fallback Hotspot"
password: "s6LvpvXZvCVf"
captive_portal:
Si vous avez des idées, je suis preneur !! Merci à tous !