Hi everyone, I hope someone can provide me some help, because I’m completely out of ideas.
I’m in the situation where my esp32 become unaccessible immediately after I install the following code in it:
esphome:
name: "fujitsuespclim"
friendly_name: FujitsuESPClim
includes:
- FujitsuClimate.h
- FujitsuClimate.cpp
- FujiHeatPump.h
- FujiHeatPump.cpp
esp32:
board: esp32dev
framework:
type: arduino
# Enable logging
logger:
# Enable Home Assistant API
api:
web_server:
port: 80
# Allow Over-The-Air updates
ota:
- platform: esphome
wifi:
networks:
ssid: !secret wifi_castro_ssid
password: !secret wifi_castro_password
#manual_ip:
# static_ip: 192.168.1.102
# gateway: 192.168.1.1
# subnet: 255.255.255.0
use_address: 192.168.1.149
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Fujitsufallback"
password: !secret wifi_castro_password
captive_portal:
external_components:
- source:
type: git
url: https://github.com/robertklep/esphome-custom-component
components: [ custom, custom_component ]
climate:
- platform: custom
lambda: |-
auto fujitsuClimate = new fujitsu::FujitsuClimate();
App.register_component(fujitsuClimate);
return {fujitsuClimate};
climates:
- name: "Fujitsu"
Before the code it works well, but once installed it becomes unavailable, with logs unhelpful:
INFO ESPHome 2025.4.0
INFO Reading configuration /config/esphome/esphome-web-694604.yaml...
INFO Starting log output from 192.168.1.149 using esphome API
WARNING Can't connect to ESPHome API for fujitsuespclim @ 192.168.1.149: Error connecting to [AddrInfo(family=<AddressFamily.AF_INET: 2>, type=<SocketKind.SOCK_STREAM: 1>, proto=6, sockaddr=IPv4Sockaddr(address='192.168.1.149', port=6053))]: [Errno 111] Connect call failed ('192.168.1.149', 6053) (SocketAPIError)
INFO Trying to connect to fujitsuespclim @ 192.168.1.149 in the background
Of course since I cannot connect, I also cannot update the code so I have to detach the ESP32 from the pcb, plug USB and start fresh install through ESPhome Wizard Dashboard, then add it to ESPHome in my HA instance and write the modified code (only for my ESP to start becoming unvailable again)
Through the ESP wizard I’m able to see the log tho:
[16:09:17]ets Jul 29 2019 12:21:46
[16:09:17]
[16:09:17]rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[16:09:17]configsip: 0, SPIWP:0xee
[16:09:17]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[16:09:17]mode:DIO, clock div:2
[16:09:17]load:0x3fff0030,len:1184
[16:09:17]load:0x40078000,len:13132
[16:09:17]load:0x40080400,len:3036
[16:09:17]entry 0x400805e4
[16:09:18][I][logger:171]: Log initialized
[16:09:18][C][safe_mode:079]: There have been 0 suspected unsuccessful boot attempts
[16:09:18][D][esp32.preferences:114]: Saving 1 preferences to flash...
[16:09:18][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[16:09:18][I][app:029]: Running through setup()...
[16:09:18][D][fuji:028]: Fuji initialized
[16:09:18][D][fuji:035]: starting task
[16:09:18][D][fuji:010][FujiTask]: reached task
[16:09:18][D][fuji:011][FujiTask]: serialTask started on core 1
[16:09:23]E (10355) task_wdt: Task watchdog got triggered. The following tasks did not reset the watchdog in time:
[16:09:23]E (10355) task_wdt: - loopTask (CPU 1)
[16:09:23]E (10355) task_wdt: Tasks currently running:
[16:09:23]E (10355) task_wdt: CPU 0: IDLE
[16:09:23]E (10355) task_wdt: CPU 1: FujiTask
[16:09:23]E (10355) task_wdt: Aborting.
[16:09:23]
[16:09:23]abort() was called at PC 0x400f8594 on core 0
[16:09:23]
[16:09:23]
[16:09:23]Backtrace:0x40083705:0x3ffbea0c |<-CORRUPTED
[16:09:23]
[16:09:23]
[16:09:23]
[16:09:23]
[16:09:23]ELF file SHA256: 0000000000000000
[16:09:23]
[16:09:23]Rebooting...
[16:09:23]ets Jul 29 2019 12:21:46
[16:09:23]
[16:09:23]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[16:09:23]configsip: 0, SPIWP:0xee
[16:09:23]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[16:09:23]mode:DIO, clock div:2
[16:09:23]load:0x3fff0030,len:1184
[16:09:23]load:0x40078000,len:13132
[16:09:23]load:0x40080400,len:3036
[16:09:23]entry 0x400805e4
[16:09:23][I][logger:171]: Log initialized
[16:09:23][C][safe_mode:079]: There have been 1 suspected unsuccessful boot attempts
[16:09:23][D][esp32.preferences:114]: Saving 1 preferences to flash...
[16:09:23][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[16:09:23][I][app:029]: Running through setup()...
[16:09:23][D][fuji:028]: Fuji initialized
[16:09:23][D][fuji:035]: starting task
[16:09:23][D][fuji:010][FujiTask]: reached task
[16:09:23][D][fuji:011][FujiTask]: serialTask started on core 1
[16:09:28]E (10355) task_wdt: Task watchdog got triggered. The following tasks did not reset the watchdog in time:
[16:09:28]E (10355) task_wdt: - loopTask (CPU 1)
[16:09:28]E (10355) task_wdt: Tasks currently running:
[16:09:28]E (10355) task_wdt: CPU 0: IDLE
[16:09:28]E (10355) task_wdt: CPU 1: FujiTask
[16:09:28]E (10355) task_wdt: Aborting.
[16:09:28]
[16:09:28]abort() was called at PC 0x400f8594 on core 0
[16:09:28]
[16:09:28]
[16:09:28]Backtrace:0x40083705:0x3ffbea0c |<-CORRUPTED
[16:09:28]
[16:09:28]
[16:09:28]
[16:09:28]
[16:09:28]ELF file SHA256: 0000000000000000
[16:09:28]
[16:09:28]Rebooting...
[16:09:28]ets Jul 29 2019 12:21:46
[16:09:28]
[16:09:28]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[16:09:28]configsip: 0, SPIWP:0xee
[16:09:28]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[16:09:28]mode:DIO, clock div:2
[16:09:28]load:0x3fff0030,len:1184
[16:09:28]load:0x40078000,len:13132
[16:09:28]load:0x40080400,len:3036
[16:09:28]entry 0x400805e4
[16:09:29][I][logger:171]: Log initialized
[16:09:29][C][safe_mode:079]: There have been 2 suspected unsuccessful boot attempts
[16:09:29][D][esp32.preferences:114]: Saving 1 preferences to flash...
[16:09:29][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[16:09:29][I][app:029]: Running through setup()...
[16:09:29][D][fuji:028]: Fuji initialized
[16:09:29][D][fuji:035]: starting task
[16:09:29][D][fuji:010][FujiTask]: reached task
[16:09:29][D][fuji:011][FujiTask]: serialTask started on core 1
[16:09:34]E (10355) task_wdt: Task watchdog got triggered. The following tasks did not reset the watchdog in time:
[16:09:34]E (10355) task_wdt: - loopTask (CPU 1)
[16:09:34]E (10355) task_wdt: Tasks currently running:
[16:09:34]E (10355) task_wdt: CPU 0: IDLE
[16:09:34]E (10355) task_wdt: CPU 1: FujiTask
[16:09:34]E (10355) task_wdt: Aborting.
[16:09:34]
[16:09:34]abort() was called at PC 0x400f8594 on core 0
[16:09:34]
[16:09:34]
[16:09:34]Backtrace:0x40083705:0x3ffbea0c |<-CORRUPTED
[16:09:34]
[16:09:34]
[16:09:34]
[16:09:34]
[16:09:34]ELF file SHA256: 0000000000000000
[16:09:34]
[16:09:34]Rebooting...
[16:09:34]ets Jul 29 2019 12:21:46
[16:09:34]
[16:09:34]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[16:09:34]configsip: 0, SPIWP:0xee
[16:09:34]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[16:09:34]mode:DIO, clock div:2
[16:09:34]load:0x3fff0030,len:1184
[16:09:34]load:0x40078000,len:13132
[16:09:34]load:0x40080400,len:3036
[16:09:34]entry 0x400805e4
[16:09:34][I][logger:171]: Log initialized
[16:09:34][C][safe_mode:079]: There have been 3 suspected unsuccessful boot attempts
[16:09:34][D][esp32.preferences:114]: Saving 1 preferences to flash...
[16:09:34][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[16:09:34][I][app:029]: Running through setup()...
[16:09:34][D][fuji:028]: Fuji initialized
[16:09:34][D][fuji:035]: starting task
[16:09:34][D][fuji:010][FujiTask]: reached task
[16:09:34][D][fuji:011][FujiTask]: serialTask started on core 1
[16:09:39]E (10355) task_wdt: Task watchdog got triggered. The following tasks did not reset the watchdog in time:
[16:09:39]E (10355) task_wdt: - loopTask (CPU 1)
[16:09:39]E (10355) task_wdt: Tasks currently running:
[16:09:39]E (10355) task_wdt: CPU 0: IDLE
[16:09:39]E (10355) task_wdt: CPU 1: FujiTask
[16:09:39]E (10355) task_wdt: Aborting.
[16:09:39]
[16:09:39]abort() was called at PC 0x400f8594 on core 0
[16:09:39]
[16:09:39]
[16:09:39]Backtrace:0x40083705:0x3ffbea0c |<-CORRUPTED
[16:09:39]
[16:09:39]
[16:09:39]
[16:09:39]
[16:09:39]ELF file SHA256: 0000000000000000
[16:09:39]
[16:09:39]Rebooting...
[16:09:39]ets Jul 29 2019 12:21:46
[16:09:39]
[16:09:39]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[16:09:39]configsip: 0, SPIWP:0xee
[16:09:39]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[16:09:39]mode:DIO, clock div:2
[16:09:39]load:0x3fff0030,len:1184
[16:09:39]load:0x40078000,len:13132
[16:09:39]load:0x40080400,len:3036
[16:09:39]entry 0x400805e4
[16:09:40][I][logger:171]: Log initialized
[16:09:40][C][safe_mode:079]: There have been 4 suspected unsuccessful boot attempts
[16:09:40][D][esp32.preferences:114]: Saving 1 preferences to flash...
[16:09:40][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[16:09:40][I][app:029]: Running through setup()...
[16:09:40][D][fuji:028]: Fuji initialized
[16:09:40][D][fuji:035]: starting task
[16:09:40][D][fuji:010][FujiTask]: reached task
[16:09:40][D][fuji:011][FujiTask]: serialTask started on core 1
[16:09:45]E (10355) task_wdt: Task watchdog got triggered. The following tasks did not reset the watchdog in time:
[16:09:45]E (10355) task_wdt: - loopTask (CPU 1)
[16:09:45]E (10355) task_wdt: Tasks currently running:
[16:09:45]E (10355) task_wdt: CPU 0: IDLE
[16:09:45]E (10355) task_wdt: CPU 1: FujiTask
[16:09:45]E (10355) task_wdt: Aborting.
[16:09:45]
[16:09:45]abort() was called at PC 0x400f8594 on core 0
[16:09:45]
[16:09:45]
[16:09:45]Backtrace:0x40083705:0x3ffbea0c |<-CORRUPTED
[16:09:45]
[16:09:45]
[16:09:45]
[16:09:45]
[16:09:45]ELF file SHA256: 0000000000000000
[16:09:45]
[16:09:45]Rebooting...
[16:09:45]ets Jul 29 2019 12:21:46
[16:09:45]
[16:09:45]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[16:09:45]configsip: 0, SPIWP:0xee
[16:09:45]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[16:09:45]mode:DIO, clock div:2
[16:09:45]load:0x3fff0030,len:1184
[16:09:45]load:0x40078000,len:13132
[16:09:45]load:0x40080400,len:3036
[16:09:45]entry 0x400805e4
[16:09:45][I][logger:171]: Log initialized
[16:09:45][C][safe_mode:079]: There have been 5 suspected unsuccessful boot attempts
[16:09:45][D][esp32.preferences:114]: Saving 1 preferences to flash...
[16:09:45][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[16:09:45][I][app:029]: Running through setup()...
[16:09:45][D][fuji:028]: Fuji initialized
[16:09:45][D][fuji:035]: starting task
[16:09:45][D][fuji:010][FujiTask]: reached task
[16:09:45][D][fuji:011][FujiTask]: serialTask started on core 1
[16:09:50]E (10355) task_wdt: Task watchdog got triggered. The following tasks did not reset the watchdog in time:
[16:09:50]E (10355) task_wdt: - loopTask (CPU 1)
[16:09:50]E (10355) task_wdt: Tasks currently running:
[16:09:50]E (10355) task_wdt: CPU 0: IDLE
[16:09:50]E (10355) task_wdt: CPU 1: FujiTask
[16:09:50]E (10355) task_wdt: Aborting.
[16:09:50]
[16:09:50]abort() was called at PC 0x400f8594 on core 0
[16:09:50]
[16:09:50]
[16:09:50]Backtrace:0x40083705:0x3ffbea0c |<-CORRUPTED
[16:09:50]
[16:09:50]
[16:09:50]
[16:09:50]
[16:09:50]ELF file SHA256: 0000000000000000
[16:09:50]
[16:09:50]Rebooting...
[16:09:50]ets Jul 29 2019 12:21:46
[16:09:50]
[16:09:50]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[16:09:50]configsip: 0, SPIWP:0xee
[16:09:50]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[16:09:50]mode:DIO, clock div:2
[16:09:50]load:0x3fff0030,len:1184
[16:09:50]load:0x40078000,len:13132
[16:09:50]load:0x40080400,len:3036
[16:09:50]entry 0x400805e4
[16:09:51][I][logger:171]: Log initialized
[16:09:51][C][safe_mode:079]: There have been 6 suspected unsuccessful boot attempts
[16:09:51][D][esp32.preferences:114]: Saving 1 preferences to flash...
[16:09:51][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[16:09:51][I][app:029]: Running through setup()...
[16:09:51][D][fuji:028]: Fuji initialized
[16:09:51][D][fuji:035]: starting task
[16:09:51][D][fuji:010][FujiTask]: reached task
[16:09:51][D][fuji:011][FujiTask]: serialTask started on core 1
[16:09:56]E (10355) task_wdt: Task watchdog got triggered. The following tasks did not reset the watchdog in time:
[16:09:56]E (10355) task_wdt: - loopTask (CPU 1)
[16:09:56]E (10355) task_wdt: Tasks currently running:
[16:09:56]E (10355) task_wdt: CPU 0: IDLE
[16:09:56]E (10355) task_wdt: CPU 1: FujiTask
[16:09:56]E (10355) task_wdt: Aborting.
[16:09:56]
[16:09:56]abort() was called at PC 0x400f8594 on core 0
[16:09:56]
[16:09:56]
[16:09:56]Backtrace:0x40083705:0x3ffbea0c |<-CORRUPTED
[16:09:56]
[16:09:56]
[16:09:56]
[16:09:56]
[16:09:56]ELF file SHA256: 0000000000000000
[16:09:56]
[16:09:56]Rebooting...
[16:09:56]ets Jul 29 2019 12:21:46
[16:09:56]
[16:09:56]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[16:09:56]configsip: 0, SPIWP:0xee
[16:09:56]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[16:09:56]mode:DIO, clock div:2
[16:09:56]load:0x3fff0030,len:1184
[16:09:56]load:0x40078000,len:13132
[16:09:56]load:0x40080400,len:3036
[16:09:56]entry 0x400805e4
[16:09:56][I][logger:171]: Log initialized
[16:09:56][C][safe_mode:079]: There have been 7 suspected unsuccessful boot attempts
[16:09:56][D][esp32.preferences:114]: Saving 1 preferences to flash...
[16:09:56][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[16:09:56][I][app:029]: Running through setup()...
[16:09:56][D][fuji:028]: Fuji initialized
[16:09:56][D][fuji:035]: starting task
[16:09:56][D][fuji:010][FujiTask]: reached task
[16:09:56][D][fuji:011][FujiTask]: serialTask started on core 1
[16:10:01]E (10355) task_wdt: Task watchdog got triggered. The following tasks did not reset the watchdog in time:
[16:10:01]E (10355) task_wdt: - loopTask (CPU 1)
[16:10:01]E (10355) task_wdt: Tasks currently running:
[16:10:01]E (10355) task_wdt: CPU 0: IDLE
[16:10:01]E (10355) task_wdt: CPU 1: FujiTask
[16:10:01]E (10355) task_wdt: Aborting.
[16:10:01]
[16:10:01]abort() was called at PC 0x400f8594 on core 0
[16:10:01]
[16:10:01]
[16:10:01]Backtrace:0x40083705:0x3ffbea0c |<-CORRUPTED
[16:10:01]
[16:10:01]
[16:10:01]
[16:10:01]
[16:10:01]ELF file SHA256: 0000000000000000
[16:10:01]
[16:10:01]Rebooting...
[16:10:01]ets Jul 29 2019 12:21:46
[16:10:01]
[16:10:01]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[16:10:01]configsip: 0, SPIWP:0xee
[16:10:01]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[16:10:01]mode:DIO, clock div:2
[16:10:01]load:0x3fff0030,len:1184
[16:10:01]load:0x40078000,len:13132
[16:10:01]load:0x40080400,len:3036
[16:10:01]entry 0x400805e4
[16:10:01][I][logger:171]: Log initialized
[16:10:02][C][safe_mode:079]: There have been 8 suspected unsuccessful boot attempts
[16:10:02][D][esp32.preferences:114]: Saving 1 preferences to flash...
[16:10:02][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[16:10:02][I][app:029]: Running through setup()...
[16:10:02][D][fuji:028]: Fuji initialized
[16:10:02][D][fuji:035]: starting task
[16:10:02][D][fuji:010][FujiTask]: reached task
[16:10:02][D][fuji:011][FujiTask]: serialTask started on core 1
[16:10:07]E (10355) task_wdt: Task watchdog got triggered. The following tasks did not reset the watchdog in time:
[16:10:07]E (10355) task_wdt: - loopTask (CPU 1)
[16:10:07]E (10355) task_wdt: Tasks currently running:
[16:10:07]E (10355) task_wdt: CPU 0: IDLE
[16:10:07]E (10355) task_wdt: CPU 1: FujiTask
[16:10:07]E (10355) task_wdt: Aborting.
[16:10:07]
[16:10:07]abort() was called at PC 0x400f8594 on core 0
[16:10:07]
[16:10:07]
[16:10:07]Backtrace:0x40083705:0x3ffbea0c |<-CORRUPTED
[16:10:07]
[16:10:07]
[16:10:07]
[16:10:07]
[16:10:07]ELF file SHA256: 0000000000000000
[16:10:07]
[16:10:07]Rebooting...
[16:10:07]ets Jul 29 2019 12:21:46
[16:10:07]
[16:10:07]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[16:10:07]configsip: 0, SPIWP:0xee
[16:10:07]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[16:10:07]mode:DIO, clock div:2
[16:10:07]load:0x3fff0030,len:1184
[16:10:07]load:0x40078000,len:13132
[16:10:07]load:0x40080400,len:3036
[16:10:07]entry 0x400805e4
[16:10:07][I][logger:171]: Log initialized
[16:10:07][C][safe_mode:079]: There have been 9 suspected unsuccessful boot attempts
[16:10:07][D][esp32.preferences:114]: Saving 1 preferences to flash...
[16:10:07][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[16:10:07][I][app:029]: Running through setup()...
[16:10:07][D][fuji:028]: Fuji initialized
[16:10:07][D][fuji:035]: starting task
[16:10:07][D][fuji:010][FujiTask]: reached task
[16:10:07][D][fuji:011][FujiTask]: serialTask started on core 1
[16:10:12]E (10355) task_wdt: Task watchdog got triggered. The following tasks did not reset the watchdog in time:
[16:10:12]E (10355) task_wdt: - loopTask (CPU 1)
[16:10:12]E (10355) task_wdt: Tasks currently running:
[16:10:12]E (10355) task_wdt: CPU 0: IDLE
[16:10:12]E (10355) task_wdt: CPU 1: FujiTask
[16:10:12]E (10355) task_wdt: Aborting.
[16:10:13]ets Jul 29 2019 12:21:46
[16:10:13]
[16:10:13]rst:0x7 (TG0WDT_SYS_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[16:10:13]configsip: 0, SPIWP:0xee
[16:10:13]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[16:10:13]mode:DIO, clock div:2
[16:10:13]load:0x3fff0030,len:1184
[16:10:13]load:0x40078000,len:13132
[16:10:13]load:0x40080400,len:3036
[16:10:13]entry 0x400805e4
[16:10:13][I][logger:171]: Log initialized
[16:10:13][C][safe_mode:079]: There have been 10 suspected unsuccessful boot attempts
[16:10:13][D][esp32.preferences:114]: Saving 1 preferences to flash...
[16:10:13][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[16:10:13][E][safe_mode:086]: Boot loop detected. Proceeding to safe mode
[16:10:13][E][component:164]: Component safe_mode set Error flag: unspecified
[16:10:14][I][app:029]: Running through setup()...
[16:10:14][C][wifi:048]: Setting up WiFi...
[16:10:14][C][wifi:061]: Starting WiFi...
[16:10:14][C][wifi:062]: Local MAC: 88:13:BF:69:46:04
[16:10:14][D][wifi:482]: Starting scan...
[16:10:14][W][component:157]: Component wifi set Warning flag: scanning for networks
[16:10:20][D][wifi:497]: Found networks:
[16:10:20][I][wifi:541]: - 'SFR_FC5F' (58:FC:20:51:FC:60) [redacted]▂▄▆█
[16:10:20][D][wifi:542]: Channel: 11
[16:10:20][D][wifi:543]: RSSI: -65 dB
[16:10:20][D][wifi:546]: - 'DIRECT-EB-HP OfficeJet Pro 9010'[redacted] (AA:B1:3B:F8:79:EB) [redacted]▂▄▆█
[16:10:20][D][wifi:546]: - 'SFR_FC5F_GUEST'[redacted] (58:FC:20:51:FC:62) [redacted]▂▄▆█
[16:10:20][D][wifi:546]: - 'NETGEAR48_EXT'[redacted] (94:A6:7E:4F:19:DF) [redacted]▂▄▆█
[16:10:20][D][wifi:546]: - 'ShellyPlusUni-CC7B5C84C6F0'[redacted] (CC:7B:5C:84:C6:F1) [redacted]▂▄▆█
[16:10:20][I][wifi:313]: WiFi Connecting to 'SFR_FC5F'...
[16:10:21][I][wifi:617]: WiFi Connected!
[16:10:21][C][wifi:428]: Local MAC: 88:13:BF:69:46:04
[16:10:21][C][wifi:433]: SSID: 'SFR_FC5F'[redacted]
[16:10:21][C][wifi:436]: IP Address: 192.168.1.149
[16:10:21][C][wifi:440]: BSSID: 58:FC:20:51:FC:60[redacted]
[16:10:21][C][wifi:441]: Hostname: 'fujitsuespclim'
[16:10:21][C][wifi:443]: Signal strength: -67 dB ▂▄▆█
[16:10:21][C][wifi:447]: Channel: 11
[16:10:21][C][wifi:448]: Subnet: 255.255.255.0
[16:10:21][C][wifi:449]: Gateway: 192.168.1.1
[16:10:21][C][wifi:450]: DNS1: 192.168.1.1
[16:10:21][C][wifi:451]: DNS2: 0.0.0.0
[16:10:21][D][wifi:626]: Disabling AP...
[16:10:21][I][app:062]: setup() finished successfully!
[16:10:21][W][safe_mode:099]: SAFE MODE IS ACTIVE
[16:10:21][W][component:172]: Component wifi cleared Warning flag
[16:10:21][I][app:100]: ESPHome version 2025.4.0 compiled on Apr 22 2025, 15:52:27
[16:10:22][C][wifi:600]: WiFi:
[16:10:22][C][wifi:428]: Local MAC: 88:13:BF:69:46:04
[16:10:22][C][wifi:433]: SSID: 'SFR_FC5F'[redacted]
[16:10:22][C][wifi:436]: IP Address: 192.168.1.149
[16:10:22][C][wifi:440]: BSSID: 58:FC:20:51:FC:60[redacted]
[16:10:22][C][wifi:441]: Hostname: 'fujitsuespclim'
[16:10:22][C][wifi:443]: Signal strength: -67 dB ▂▄▆█
[16:10:22][C][wifi:447]: Channel: 11
[16:10:22][C][wifi:448]: Subnet: 255.255.255.0
[16:10:22][C][wifi:449]: Gateway: 192.168.1.1
[16:10:22][C][wifi:450]: DNS1: 192.168.1.1
[16:10:22][C][wifi:451]: DNS2: 0.0.0.0
[16:10:22][C][logger:177]: Logger:
[16:10:22][C][logger:178]: Max Level: DEBUG
[16:10:22][C][logger:179]: Initial Level: DEBUG
[16:10:22][C][logger:181]: Log Baud Rate: 115200
[16:10:22][C][logger:182]: Hardware UART: UART0
[16:10:22][C][captive_portal:089]: Captive Portal:
[16:10:22][C][mdns:116]: mDNS:
[16:10:22][C][mdns:117]: Hostname: fujitsuespclim
[16:10:22][C][esphome.ota:073]: Over-The-Air updates:
[16:10:22][C][esphome.ota:074]: Address: 192.168.1.149:3232
[16:10:22][C][esphome.ota:075]: Version: 2
[16:10:22][C][safe_mode:018]: Safe Mode:
[16:10:22][C][safe_mode:020]: Boot considered successful after 60 seconds
[16:10:22][C][safe_mode:021]: Invoke after 10 boot attempts
[16:10:22][C][safe_mode:023]: Remain in safe mode for 300 seconds
[16:10:22][W][safe_mode:031]: SAFE MODE IS ACTIVE
[16:11:13][I][safe_mode:041]: Boot seems successful; resetting boot loop counter
[16:11:13][D][esp32.preferences:114]: Saving 1 preferences to flash...
[16:11:13][D][esp32.preferences:143]: Saving 1 preferences to flash: 1 cached, 0 written, 0 failed
From what I read in this forum, some people had this problem before me. Some had it because they needed to use the single-core version, but I tried and the result was exactly the same.
So now I’m lost. Does anybody can help me, or have any idea what I’m missing?
Thank you very much