ESP32 problems

For some reason my ESP-board keeps failing connecting to the WiFi and it keeps getting problems with the OTA.
And when its finaly is connected, i can ping the ESP32, it respons. but going to the IP does notting.

Code:

esphome:
  name: somfy
  platform: ESP32
  board: nodemcu-32s
  libraries:
    - EEPROM
    - SPI
    - [email protected]
    - [email protected]
  includes:
    - somfy_secrets.h
    - somfy_cover.h

wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password
  power_save_mode: none

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: !secret fallback_ssid
    password: !secret fallback_password

captive_portal:

# Enable logging
logger:

# Enable Home Assistant API
api:

ota:
  password: !secret ota_password

web_server:
  port: 80

sensor:
  - platform: uptime
    name: Uptime Sensor

  - platform: wifi_signal
    name: "WiFi Signal Sensor"

cover:
  - platform: custom
    lambda: |-
      auto somfy_remote = new SomfyESPRemote();
      somfy_remote->add_cover("somfyTine", "badezimmer", SOMFY_REMOTE_BADEZIMMER);
      somfy_remote->add_cover("somfyJohn", "kinderzimmer", SOMFY_REMOTE_KINDERZIMMER);
      App.register_component(somfy_remote);
      return somfy_remote->covers;

    covers:
      - id: "somfyTine"
        name: "Somfy Cover Tine"
      - id: "somfyJohn"
        name: "Somfy Cover John"
      - id: "somfySamen"
        name: "Somfy Cover Samen"

switch:
  - platform: template
    name: "PROG"
    turn_on_action:
      - lambda: |-
          ((SomfyESPCover*)id(somfyTine))->program();
  - platform: template
    name: "STOP"
    turn_on_action:
      - lambda: |-
          ((SomfyESPCover*)id(somfyTine))->make_call().set_command_stop();

  - platform: template
    name: "PROG2"
    turn_on_action:
      - lambda: |-
          ((SomfyESPCover*)id(somfyJohn))->program();
  - platform: template
    name: "STOP2"
    turn_on_action:
      - lambda: |-
          ((SomfyESPCover*)id(somfyJohn))->make_call().set_command_stop();

  - platform: template
    name: "PROG3"
    turn_on_action:
      - lambda: |-
          ((SomfyESPCover*)id(somfySamen))->program();
  - platform: template
    name: "STOP3"
    turn_on_action:
      - lambda: |-
          ((SomfyESPCover*)id(somfySamen))->make_call().set_command_stop();

And log:

ets Jul 29 2019 12:21:46

rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:13132
load:0x40080400,len:3036
entry 0x400805e4
[I][logger:258]: Log initialized
[C][ota:469]: There have been 0 suspected unsuccessful boot attempts.
[D][esp32.preferences:113]: Saving 1 preferences to flash...
[D][esp32.preferences:142]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
Guru Meditation Error: Core  1 panic'ed (LoadProhibited). Exception was unhandled.

Core  1 register dump:
PC      : 0x401566e2  PS      : 0x00060830  A0      : 0x800e1ddb  A1      : 0x3ffb26d0  
A2      : 0xbaad567c  A3      : 0x3ffb27a4  A4      : 0x3f40363a  A5      : 0x0000ff00  
A6      : 0x00ff0000  A7      : 0xff000000  A8      : 0x801566d7  A9      : 0x3ffb26b0  
A10     : 0x3ffb2fd0  A11     : 0x3f403629  A12     : 0x00000011  A13     : 0x00000001  
A14     : 0x00000003  A15     : 0x00060023  SAR     : 0x00000008  EXCCAUSE: 0x0000001c  
EXCVADDR: 0xbaad567c  LBEG    : 0x40089285  LEND    : 0x400892a7  LCOUNT  : 0x00000000  


Backtrace:0x401566df:0x3ffb26d00x400e1dd8:0x3ffb2700 0x400e37a1:0x3ffb2720 0x400ee592:0x3ffb2820 




ELF file SHA256: 0000000000000000

Rebooting...
ets Jul 29 2019 12:21:46

rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:13132
load:0x40080400,len:3036
entry 0x400805e4
[I][logger:258]: Log initialized
[C][ota:469]: There have been 1 suspected unsuccessful boot attempts.
[D][esp32.preferences:113]: Saving 1 preferences to flash...
[D][esp32.preferences:142]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
Guru Meditation Error: Core  1 panic'ed (LoadProhibited). Exception was unhandled.

Core  1 register dump:
PC      : 0x401566e2  PS      : 0x00060830  A0      : 0x800e1ddb  A1      : 0x3ffb26d0  
A2      : 0xbaad567c  A3      : 0x3ffb27a4  A4      : 0x3f40363a  A5      : 0x0000ff00  
A6      : 0x00ff0000  A7      : 0xff000000  A8      : 0x801566d7  A9      : 0x3ffb26b0  
A10     : 0x3ffb2fd0  A11     : 0x3f403629  A12     : 0x00000011  A13     : 0x00000001  
A14     : 0x00ff0000  A15     : 0xff000000  SAR     : 0x00000008  EXCCAUSE: 0x0000001c  
EXCVADDR: 0xbaad567c  LBEG    : 0x40089285  LEND    : 0x400892a7  LCOUNT  : 0x00000000  


Backtrace:0x401566df:0x3ffb26d00x400e1dd8:0x3ffb2700 0x400e37a1:0x3ffb2720 0x400ee592:0x3ffb2820 




ELF file SHA256: 0000000000000000

Rebooting...
ets Jul 29 2019 12:21:46

rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:13132
load:0x40080400,len:3036
entry 0x400805e4
[I][logger:258]: Log initialized
[C][ota:469]: There have been 2 suspected unsuccessful boot attempts.
[D][esp32.preferences:113]: Saving 1 preferences to flash...
[D][esp32.preferences:142]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
Guru Meditation Error: Core  1 panic'ed (LoadProhibited). Exception was unhandled.

Core  1 register dump:
PC      : 0x401566e2  PS      : 0x00060830  A0      : 0x800e1ddb  A1      : 0x3ffb26d0  
A2      : 0xbaad567c  A3      : 0x3ffb27a4  A4      : 0x3f40363a  A5      : 0x0000ff00  
A6      : 0x00ff0000  A7      : 0xff000000  A8      : 0x801566d7  A9      : 0x3ffb26b0  
A10     : 0x3ffb2fd0  A11     : 0x3f403629  A12     : 0x00000011  A13     : 0x00000001  
A14     : 0x00ff0000  A15     : 0xff000000  SAR     : 0x00000008  EXCCAUSE: 0x0000001c  
EXCVADDR: 0xbaad567c  LBEG    : 0x40089285  LEND    : 0x400892a7  LCOUNT  : 0x00000000  


Backtrace:0x401566df:0x3ffb26d00x400e1dd8:0x3ffb2700 0x400e37a1:0x3ffb2720 0x400ee592:0x3ffb2820 




ELF file SHA256: 0000000000000000

Rebooting...
ets Jul 29 2019 12:21:46

rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:13132
load:0x40080400,len:3036
entry 0x400805e4
[I][logger:258]: Log initialized
[C][ota:469]: There have been 3 suspected unsuccessful boot attempts.
[D][esp32.preferences:113]: Saving 1 preferences to flash...
[D][esp32.preferences:142]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
Guru Meditation Error: Core  1 panic'ed (LoadProhibited). Exception was unhandled.

Core  1 register dump:
PC      : 0x401566e2  PS      : 0x00060830  A0      : 0x800e1ddb  A1      : 0x3ffb26d0  
A2      : 0xbaad567c  A3      : 0x3ffb27a4  A4      : 0x3f40363a  A5      : 0x0000ff00  
A6      : 0x00ff0000  A7      : 0xff000000  A8      : 0x801566d7  A9      : 0x3ffb26b0  
A10     : 0x3ffb2fd0  A11     : 0x3f403629  A12     : 0x00000011  A13     : 0x00000001  
A14     : 0x00ff0000  A15     : 0xff000000  SAR     : 0x00000008  EXCCAUSE: 0x0000001c  
EXCVADDR: 0xbaad567c  LBEG    : 0x40089285  LEND    : 0x400892a7  LCOUNT  : 0x00000000  


Backtrace:0x401566df:0x3ffb26d00x400e1dd8:0x3ffb2700 0x400e37a1:0x3ffb2720 0x400ee592:0x3ffb2820 




ELF file SHA256: 0000000000000000

Rebooting...
ets Jul 29 2019 12:21:46

rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:13132
load:0x40080400,len:3036
entry 0x400805e4
[I][logger:258]: Log initialized
[C][ota:469]: There have been 4 suspected unsuccessful boot attempts.
[D][esp32.preferences:113]: Saving 1 preferences to flash...
[D][esp32.preferences:142]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
Guru Meditation Error: Core  1 panic'ed (LoadProhibited). Exception was unhandled.

Core  1 register dump:
PC      : 0x401566e2  PS      : 0x00060830  A0      : 0x800e1ddb  A1      : 0x3ffb26d0  
A2      : 0xbaad567c  A3      : 0x3ffb27a4  A4      : 0x3f40363a  A5      : 0x0000ff00  
A6      : 0x00ff0000  A7      : 0xff000000  A8      : 0x801566d7  A9      : 0x3ffb26b0  
A10     : 0x3ffb3060  A11     : 0x3f403629  A12     : 0x00000011  A13     : 0x00000001  
A14     : 0x00ff0000  A15     : 0xff000000  SAR     : 0x00000008  EXCCAUSE: 0x0000001c  
EXCVADDR: 0xbaad567c  LBEG    : 0x40089285  LEND    : 0x400892a7  LCOUNT  : 0x00000000  


Backtrace:0x401566df:0x3ffb26d00x400e1dd8:0x3ffb2700 0x400e37a1:0x3ffb2720 0x400ee592:0x3ffb2820 




ELF file SHA256: 0000000000000000

Rebooting...
ets Jul 29 2019 12:21:46

rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:13132
load:0x40080400,len:3036
entry 0x400805e4
[I][logger:258]: Log initialized
[C][ota:469]: There have been 5 suspected unsuccessful boot attempts.
[D][esp32.preferences:113]: Saving 1 preferences to flash...
[D][esp32.preferences:142]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
Guru Meditation Error: Core  1 panic'ed (LoadProhibited). Exception was unhandled.

Core  1 register dump:
PC      : 0x401566e2  PS      : 0x00060830  A0      : 0x800e1ddb  A1      : 0x3ffb26d0  
A2      : 0xbaad567c  A3      : 0x3ffb27a4  A4      : 0x3f40363a  A5      : 0x0000ff00  
A6      : 0x00ff0000  A7      : 0xff000000  A8      : 0x801566d7  A9      : 0x3ffb26b0  
A10     : 0x3ffb2fd0  A11     : 0x3f403629  A12     : 0x00000011  A13     : 0x00000001  
A14     : 0x00ff0000  A15     : 0xff000000  SAR     : 0x00000008  EXCCAUSE: 0x0000001c  
EXCVADDR: 0xbaad567c  LBEG    : 0x40089285  LEND    : 0x400892a7  LCOUNT  : 0x00000000  


Backtrace:0x401566df:0x3ffb26d00x400e1dd8:0x3ffb2700 0x400e37a1:0x3ffb2720 0x400ee592:0x3ffb2820 




ELF file SHA256: 0000000000000000

Rebooting...
ets Jul 29 2019 12:21:46

rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:13132
load:0x40080400,len:3036
entry 0x400805e4
[I][logger:258]: Log initialized
[C][ota:469]: There have been 6 suspected unsuccessful boot attempts.
[D][esp32.preferences:113]: Saving 1 preferences to flash...
[D][esp32.preferences:142]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
Guru Meditation Error: Core  1 panic'ed (LoadProhibited). Exception was unhandled.

Core  1 register dump:
PC      : 0x401566e2  PS      : 0x00060830  A0      : 0x800e1ddb  A1      : 0x3ffb26d0  
A2      : 0xbaad567c  A3      : 0x3ffb27a4  A4      : 0x3f40363a  A5      : 0x0000ff00  
A6      : 0x00ff0000  A7      : 0xff000000  A8      : 0x801566d7  A9      : 0x3ffb26b0  
A10     : 0x3ffb2fd0  A11     : 0x3f403629  A12     : 0x00000011  A13     : 0x00000001  
A14     : 0x00ff0000  A15     : 0xff000000  SAR     : 0x00000008  EXCCAUSE: 0x0000001c  
EXCVADDR: 0xbaad567c  LBEG    : 0x40089285  LEND    : 0x400892a7  LCOUNT  : 0x00000000  


Backtrace:0x401566df:0x3ffb26d00x400e1dd8:0x3ffb2700 0x400e37a1:0x3ffb2720 0x400ee592:0x3ffb2820 




ELF file SHA256: 0000000000000000

Rebooting...
ets Jul 29 2019 12:21:46

rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:13132
load:0x40080400,len:3036
entry 0x400805e4
[I][logger:258]: Log initialized
[C][ota:469]: There have been 7 suspected unsuccessful boot attempts.
[D][esp32.preferences:113]: Saving 1 preferences to flash...
[D][esp32.preferences:142]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
Guru Meditation Error: Core  1 panic'ed (LoadProhibited). Exception was unhandled.

Core  1 register dump:
PC      : 0x401566e2  PS      : 0x00060830  A0      : 0x800e1ddb  A1      : 0x3ffb26d0  
A2      : 0xbaad567c  A3      : 0x3ffb27a4  A4      : 0x3f40363a  A5      : 0x0000ff00  
A6      : 0x00ff0000  A7      : 0xff000000  A8      : 0x801566d7  A9      : 0x3ffb26b0  
A10     : 0x3ffb2fd0  A11     : 0x3f403629  A12     : 0x00000011  A13     : 0x00000001  
A14     : 0x00ff0000  A15     : 0xff000000  SAR     : 0x00000008  EXCCAUSE: 0x0000001c  
EXCVADDR: 0xbaad567c  LBEG    : 0x40089285  LEND    : 0x400892a7  LCOUNT  : 0x00000000  


Backtrace:0x401566df:0x3ffb26d00x400e1dd8:0x3ffb2700 0x400e37a1:0x3ffb2720 0x400ee592:0x3ffb2820 




ELF file SHA256: 0000000000000000

Rebooting...
ets Jul 29 2019 12:21:46

rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:13132
load:0x40080400,len:3036
entry 0x400805e4
[I][logger:258]: Log initialized
[C][ota:469]: There have been 8 suspected unsuccessful boot attempts.
[D][esp32.preferences:113]: Saving 1 preferences to flash...
[D][esp32.preferences:142]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
Guru Meditation Error: Core  1 panic'ed (LoadProhibited). Exception was unhandled.

Core  1 register dump:
PC      : 0x401566e2  PS      : 0x00060830  A0      : 0x800e1ddb  A1      : 0x3ffb26d0  
A2      : 0xbaad567c  A3      : 0x3ffb27a4  A4      : 0x3f40363a  A5      : 0x0000ff00  
A6      : 0x00ff0000  A7      : 0xff000000  A8      : 0x801566d7  A9      : 0x3ffb26b0  
A10     : 0x3ffb2fd0  A11     : 0x3f403629  A12     : 0x00000011  A13     : 0x00000001  
A14     : 0x00000001  A15     : 0x3ffb08c0  SAR     : 0x00000008  EXCCAUSE: 0x0000001c  
EXCVADDR: 0xbaad567c  LBEG    : 0x40089285  LEND    : 0x400892a7  LCOUNT  : 0x00000000  


Backtrace:0x401566df:0x3ffb26d00x400e1dd8:0x3ffb2700 0x400e37a1:0x3ffb2720 0x400ee592:0x3ffb2820 




ELF file SHA256: 0000000000000000

Rebooting...
ets Jul 29 2019 12:21:46

rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:13132
load:0x40080400,len:3036
entry 0x400805e4
[I][logger:258]: Log initialized
[C][ota:469]: There have been 9 suspected unsuccessful boot attempts.
[D][esp32.preferences:113]: Saving 1 preferences to flash...
[D][esp32.preferences:142]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
Guru Meditation Error: Core  1 panic'ed (LoadProhibited). Exception was unhandled.

Core  1 register dump:
PC      : 0x401566e2  PS      : 0x00060830  A0      : 0x800e1ddb  A1      : 0x3ffb26d0  
A2      : 0xbaad567c  A3      : 0x3ffb27a4  A4      : 0x3f40363a  A5      : 0x0000ff00  
A6      : 0x00ff0000  A7      : 0xff000000  A8      : 0x801566d7  A9      : 0x3ffb26b0  
A10     : 0x3ffb2fd0  A11     : 0x3f403629  A12     : 0x00000011  A13     : 0x00000001  
A14     : 0x00ff0000  A15     : 0xff000000  SAR     : 0x00000008  EXCCAUSE: 0x0000001c  
EXCVADDR: 0xbaad567c  LBEG    : 0x40089285  LEND    : 0x400892a7  LCOUNT  : 0x00000000  


Backtrace:0x401566df:0x3ffb26d00x400e1dd8:0x3ffb2700 0x400e37a1:0x3ffb2720 0x400ee592:0x3ffb2820 




ELF file SHA256: 0000000000000000

Rebooting...
ets Jul 29 2019 12:21:46

rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:13132
load:0x40080400,len:3036
entry 0x400805e4
[I][logger:258]: Log initialized
[C][ota:469]: There have been 10 suspected unsuccessful boot attempts.
[D][esp32.preferences:113]: Saving 1 preferences to flash...
[D][esp32.preferences:142]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[E][ota:476]: Boot loop detected. Proceeding to safe mode.
[I][app:029]: Running through setup()...
[C][wifi:037]: Setting up WiFi...
[C][wifi:038]:   Local MAC: C8:F0:9E:74:24:64
[D][wifi:386]: Starting scan...
[D][wifi:401]: Found networks:
[I][wifi:445]: - 'WiFi' (B4:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -73 dB
[I][wifi:445]: - 'WiFi' (D8:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -75 dB
[D][wifi:450]: - ''[redacted] (BA:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:450]: - ''[redacted] (DE:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (DC:53:7C:83:90:76) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (06:53:7C:83:90:79) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (1C:64:99:B0:02:2C) [redacted]▂▄▆█
[D][wifi:450]: - 'Proximus-Home-5F70'[redacted] (20:9A:7D:92:5F:76) [redacted]▂▄▆█
[D][wifi:450]: - 'telenet-86D4747'[redacted] (DC:53:7C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2263408472'[redacted] (98:3F:60:D8:BD:C8) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (DE:53:3C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (C8:D1:2A:05:8C:D8) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2250274671'[redacted] (14:AB:02:26:3C:2D) [redacted]▂▄▆█
[D][wifi:450]: - 'WiFi-2.4-2763'[redacted] (F8:1A:67:A9:0D:78) [redacted]▂▄▆█
[D][wifi:450]: - 'DIRECT-oQC43x Series'[redacted] (86:25:19:0E:69:76) [redacted]▂▄▆█
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=B4:B0:24:DE:3C:CC[redacted] reason='Authentication Failed'
[W][wifi:570]: WiFi Unknown connection status 0
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=B4:B0:24:DE:3C:CC[redacted] reason='Association Leave'
[W][wifi:570]: WiFi Unknown connection status 0
[D][wifi:386]: Starting scan...
[D][wifi:401]: Found networks:
[I][wifi:445]: - 'WiFi' (D8:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -78 dB
[I][wifi:445]: - 'WiFi' (B4:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -73 dB
[D][wifi:450]: - ''[redacted] (BA:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:450]: - ''[redacted] (DE:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:450]: - 'Proximus-Home-5F70'[redacted] (20:9A:7D:92:5F:76) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2250274671'[redacted] (14:AB:02:26:3C:2D) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (1C:64:99:B0:02:2C) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (C8:D1:2A:05:8C:D8) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (DC:53:7C:83:90:76) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2263408472'[redacted] (98:3F:60:D8:BD:C8) [redacted]▂▄▆█
[D][wifi:450]: - 'telenet-86D4747'[redacted] (DC:53:7C:AF:38:C1) [redacted]▂▄▆█
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi:513]: Incomplete connection.
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=D8:0D:17:E5:E1:E0[redacted] reason='Authentication Failed'
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=D8:0D:17:E5:E1:E0[redacted] reason='Authentication Failed'
[D][wifi:386]: Starting scan...
[D][wifi:401]: Found networks:
[I][wifi:445]: - 'WiFi' (B4:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -74 dB
[I][wifi:445]: - 'WiFi' (D8:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -78 dB
[D][wifi:450]: - ''[redacted] (BA:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:450]: - ''[redacted] (DE:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (DC:53:7C:83:90:76) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (06:53:7C:83:90:79) [redacted]▂▄▆█
[D][wifi:450]: - 'Proximus-Home-5F70'[redacted] (20:9A:7D:92:5F:76) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (1C:64:99:B0:02:2C) [redacted]▂▄▆█
[D][wifi:450]: - 'telenet-86D4747'[redacted] (DC:53:7C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (DE:53:3C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (C8:D1:2A:05:8C:D8) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2263408472'[redacted] (98:3F:60:D8:BD:C8) [redacted]▂▄▆█
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=B4:B0:24:DE:3C:CC[redacted] reason='Association Leave'
[W][wifi:570]: WiFi Unknown connection status 0
[D][wifi:386]: Starting scan...
[D][wifi:401]: Found networks:
[I][wifi:445]: - 'WiFi' (D8:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -80 dB
[I][wifi:445]: - 'WiFi' (B4:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -73 dB
[D][wifi:450]: - ''[redacted] (BA:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (DC:53:7C:83:90:76) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (06:53:7C:83:90:79) [redacted]▂▄▆█
[D][wifi:450]: - 'Proximus-Home-5F70'[redacted] (20:9A:7D:92:5F:76) [redacted]▂▄▆█
[D][wifi:450]: - ''[redacted] (DE:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (1C:64:99:B0:02:2C) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (DE:53:3C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (C8:D1:2A:05:8C:D8) [redacted]▂▄▆█
[D][wifi:450]: - 'telenet-86D4747'[redacted] (DC:53:7C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2250274671'[redacted] (14:AB:02:26:3C:2D) [redacted]▂▄▆█
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi:513]: Incomplete connection.
[W][wifi:585]: Restarting WiFi adapter...
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=D8:0D:17:E5:E1:E0[redacted] reason='Authentication Failed'
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[D][wifi:386]: Starting scan...
[D][wifi:401]: Found networks:
[I][wifi:445]: - 'WiFi' (B4:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -73 dB
[I][wifi:445]: - 'WiFi' (D8:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -80 dB
[D][wifi:450]: - ''[redacted] (BA:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (06:53:7C:83:90:79) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (DC:53:7C:83:90:76) [redacted]▂▄▆█
[D][wifi:450]: - 'Proximus-Home-5F70'[redacted] (20:9A:7D:92:5F:76) [redacted]▂▄▆█
[D][wifi:450]: - ''[redacted] (DE:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (DE:53:3C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - 'telenet-86D4747'[redacted] (DC:53:7C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (1C:64:99:B0:02:2C) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (C8:D1:2A:05:8C:D8) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2250274671'[redacted] (14:AB:02:26:3C:2D) [redacted]▂▄▆█
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=B4:B0:24:DE:3C:CC[redacted] reason='Authentication Failed'
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=B4:B0:24:DE:3C:CC[redacted] reason='Authentication Failed'
[D][wifi:386]: Starting scan...
[D][wifi:401]: Found networks:
[I][wifi:445]: - 'WiFi' (D8:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -80 dB
[I][wifi:445]: - 'WiFi' (B4:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -73 dB
[D][wifi:450]: - ''[redacted] (BA:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (06:53:7C:83:90:79) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (DC:53:7C:83:90:76) [redacted]▂▄▆█
[D][wifi:450]: - 'Proximus-Home-5F70'[redacted] (20:9A:7D:92:5F:76) [redacted]▂▄▆█
[D][wifi:450]: - ''[redacted] (DE:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2263408472'[redacted] (98:3F:60:D8:BD:C8) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (C8:D1:2A:05:8C:D8) [redacted]▂▄▆█
[D][wifi:450]: - 'telenet-86D4747'[redacted] (DC:53:7C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (DE:53:3C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (1C:64:99:B0:02:2C) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2250274671'[redacted] (14:AB:02:26:3C:2D) [redacted]▂▄▆█
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=D8:0D:17:E5:E1:E0[redacted] reason='Authentication Failed'
[D][wifi:386]: Starting scan...
[D][wifi:401]: Found networks:
[I][wifi:445]: - 'WiFi' (B4:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -72 dB
[I][wifi:445]: - 'WiFi' (D8:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -80 dB
[D][wifi:450]: - ''[redacted] (BA:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:450]: - ''[redacted] (DE:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:450]: - 'Proximus-Home-5F70'[redacted] (20:9A:7D:92:5F:76) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (1C:64:99:B0:02:2C) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (DC:53:7C:83:90:76) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (06:53:7C:83:90:79) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2263408472'[redacted] (98:3F:60:D8:BD:C8) [redacted]▂▄▆█
[D][wifi:450]: - 'telenet-86D4747'[redacted] (DC:53:7C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (C8:D1:2A:05:8C:D8) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (DE:53:3C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2250274671'[redacted] (14:AB:02:26:3C:2D) [redacted]▂▄▆█
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=B4:B0:24:DE:3C:CC[redacted] reason='Association Leave'
[W][wifi:570]: WiFi Unknown connection status 0
[W][wifi:585]: Restarting WiFi adapter...
[D][wifi:386]: Starting scan...
[I][wifi:141]: Starting fallback AP!
[C][wifi:210]: Setting up AP...
[C][wifi:212]:   AP SSID: 'Wifi Fallback Hotspot'
[C][wifi:213]:   AP Password: 'StH4vi7456Sb'
[C][wifi:222]:   IP Address: 192.168.4.1
[D][wifi:401]: Found networks:
[I][wifi:445]: - 'WiFi' (D8:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -80 dB
[I][wifi:445]: - 'WiFi' (B4:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -73 dB
[D][wifi:450]: - ''[redacted] (BA:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (DC:53:7C:83:90:76) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (06:53:7C:83:90:79) [redacted]▂▄▆█
[D][wifi:450]: - 'Proximus-Home-5F70'[redacted] (20:9A:7D:92:5F:76) [redacted]▂▄▆█
[D][wifi:450]: - ''[redacted] (DE:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (C8:D1:2A:05:8C:D8) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (1C:64:99:B0:02:2C) [redacted]▂▄▆█
[D][wifi:450]: - 'telenet-86D4747'[redacted] (DC:53:7C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2250274671'[redacted] (14:AB:02:26:3C:2D) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (DE:53:3C:AF:38:C1) [redacted]▂▄▆█
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=D8:0D:17:E5:E1:E0[redacted] reason='Authentication Failed'
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=D8:0D:17:E5:E1:E0[redacted] reason='Authentication Failed'
[D][wifi:386]: Starting scan...
[D][wifi:401]: Found networks:
[I][wifi:445]: - 'WiFi' (B4:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -74 dB
[I][wifi:445]: - 'WiFi' (D8:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -79 dB
[D][wifi:450]: - ''[redacted] (BA:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (DC:53:7C:83:90:76) [redacted]▂▄▆█
[D][wifi:450]: - ''[redacted] (DE:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (06:53:7C:83:90:79) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (1C:64:99:B0:02:2C) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (C8:D1:2A:05:8C:D8) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2263408472'[redacted] (98:3F:60:D8:BD:C8) [redacted]▂▄▆█
[D][wifi:450]: - 'Proximus-Home-5F70'[redacted] (20:9A:7D:92:5F:76) [redacted]▂▄▆█
[D][wifi:450]: - 'telenet-86D4747'[redacted] (DC:53:7C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (DE:53:3C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2250274671'[redacted] (14:AB:02:26:3C:2D) [redacted]▂▄▆█
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=B4:B0:24:DE:3C:CC[redacted] reason='Authentication Failed'
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=B4:B0:24:DE:3C:CC[redacted] reason='Authentication Failed'
[D][wifi:386]: Starting scan...
[D][wifi:401]: Found networks:
[I][wifi:445]: - 'WiFi' (D8:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -76 dB
[I][wifi:445]: - 'WiFi' (B4:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:446]:     Channel: 11
[D][wifi:447]:     RSSI: -73 dB
[D][wifi:450]: - ''[redacted] (BA:B0:24:DE:3C:CC) [redacted]▂▄▆█
[D][wifi:450]: - ''[redacted] (DE:0D:17:E5:E1:E0) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (06:53:7C:83:90:79) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (DC:53:7C:83:90:76) [redacted]▂▄▆█
[D][wifi:450]: - 'Proximus-Home-5F70'[redacted] (20:9A:7D:92:5F:76) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (1C:64:99:B0:02:2C) [redacted]▂▄▆█
[D][wifi:450]: - 'SUN2000-HV2250274671'[redacted] (14:AB:02:26:3C:2D) [redacted]▂▄▆█
[D][wifi:450]: - 'telenet-86D4747'[redacted] (DC:53:7C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - 'TelenetWiFree'[redacted] (DE:53:3C:AF:38:C1) [redacted]▂▄▆█
[D][wifi:450]: - '~ Home ~'[redacted] (C8:D1:2A:05:8C:D8) [redacted]▂▄▆█
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi:565]: Connecting to WiFi network failed. Are the credentials wrong?
[I][wifi:257]: WiFi Connecting to 'WiFi'...
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=D8:0D:17:E5:E1:E0[redacted] reason='Authentication Failed'
[W][wifi_esp32:494]: Event: Disconnected ssid='WiFi' bssid=D8:0D:17:E5:E1:E0[redacted] reason='Authentication Failed'
[D][wifi:386]: Starting scan...
....

Please post your log file here, or poste it on a paste site and post a link here.

posted it.

Sounds like your password is wrong.

Password is right.
It works for my wemos boards.
It connect to the WiFi after trying for like 15 times.

I had the same problem connecting to my WiFi network.

I created a special IOT network (BSSD) without authentication and fixed IP adreses. I use mac adres authentication and separate this network from my other network.

Problem solved :slight_smile: