ESPHome fehhlermeldung bein ESP8266 flashen!

Habe hier das erste mal in HA ESPHome installiert und wollte einen ESP8266 flashen, die Konfiguration kann man alles machen auch das Device kann man auswählen und fängt dann an mit dem flash Vorgang nur bricht er dann mit folgender Fehlermeldung ab! Wie wenn ihn bei kompilieren was fehlen würde! Took 0.93

INFO ESPHome 2025.12.4
INFO Reading configuration /config/esphome/boiler-temp.yaml...
WARNING The minimum WiFi authentication mode (wifi -> min_auth_mode) is not set. This controls the weakest encryption your device will accept when connecting to WiFi. Currently defaults to WPA (less secure), but will change to WPA2 (more secure) in 2026.6.0. WPA uses TKIP encryption which has known security vulnerabilities and should be avoided. WPA2 uses AES encryption which is significantly more secure. To silence this warning, explicitly set min_auth_mode under 'wifi:'. If your router supports WPA2 or WPA3, set 'min_auth_mode: WPA2'. If your router only supports WPA, set 'min_auth_mode: WPA'.
INFO Generating C++ source...
INFO Compiling app... Build path: /data/build/boiler-temp
Processing boiler-temp (board: esp01_1m; framework: arduino; platform: platformio/espressif8266@4.2.1)
--------------------------------------------------------------------------------
HARDWARE: ESP8266 80MHz, 80KB RAM, 1MB Flash
Dependency Graph
|-- ESPAsyncTCP @ 2.0.0
|-- ESP8266WiFi @ 1.0
|-- ESPAsyncWebServer @ 3.7.10
|-- DNSServer @ 1.1.1
|-- ESP8266mDNS @ 1.2
|-- noise-c @ 0.1.10
Compiling .pioenvs/boiler-temp/src/esphome/components/api/api_connection.cpp.o
sh: 1: xtensa-lx106-elf-g++: not found
Compiling .pioenvs/boiler-temp/src/esphome/components/api/api_frame_helper.cpp.o
*** [.pioenvs/boiler-temp/src/esphome/components/api/api_connection.cpp.o] Error 127
sh: 1: xtensa-lx106-elf-g++: not found
*** [.pioenvs/boiler-temp/src/esphome/components/api/api_frame_helper.cpp.o] Error 127
========================== [FAILED] Took 0.93 seconds ==========================

Toolchain Schrott?

Hast du mal bei deinem yaml auf die 3 Punkte “…” und “Clean Build Files” gemacht!?

Ja habe ich schon 3 mal gemacht und dann versucht neu zu flashen, bricht jedes mal mit der selben Fehlermeldung ab!

dann mal ESP Home neu installieren! Da muss er die Toolchain neu downloaden/aufbauen!

Habe hier noch einen ESP32 den ich gerade flash, mal schauen ob es mit dem dann geht! Sonst installiere ich ESPHome nochmal neu!
Momentan schaut es gut aus aber dauert das immer so lange bis das fertig wird?

1 „Gefällt mir“

Nutzt da noch einen WPA Schlüssel und keinen WPA2 Schlüssel?

Ich versuche auch schon seit zweit Tagen nebenher mein CYD zu flashen, aber ich finde einfach nicht den richtigen Display Treiber.

Habe eine WPS2 Verschlüsselung!
Deuert das ESP Flashen immer so lange oder nur bei ersten mal? Den so wie das jetzt seit einer Stunde da herum macht, macht das null Sinn!

Das ist aber nur Info! (Noch) kein Fehler!

Hochkant(Portrait)

display:
  - platform: ili9xxx
    spi_id: tft
    model: ili9341
    cs_pin: GPIO15
    dc_pin: GPIO2
    invert_colors: false
    update_interval: 500ms
    auto_clear_enabled: true
    color_palette: 8BIT
    dimensions:
      width: 240
      height: 320

bzw.

Quer (Landscape)

display:
  - platform: ili9xxx
    spi_id: tft
    model: ili9341
    cs_pin: GPIO15
    dc_pin: GPIO2
    invert_colors: false
    rotation: 90          # Landscape
    dimensions:
      width: 240          
      height: 320
    update_interval: 500ms
    auto_clear_enabled: true
    color_palette: 8BIT

das kommt nur bei meinen umgeflashten Shelly UNI mit

esp8266:
  board: esp_wroom_02

also auch ein esp8266

hier musst du händisch die yaml anpassen auf WPA2

wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password
  min_auth_mode: WPA2 # Use WPA3 if your router and devices all support it, else WPA2 is recommended