No matching network found!

Hello everyone. I am new here.
I am having a lot of trouble flashing my ESP32 NodeMCU.
After progressing through all the problems that came my way, I came to a place where I got stuck.
I am flashing with ESPHOME-FLASHER and it seems to flash but I run into the problem that it can’t connect to my WIFI network.

Here is the log:

[16:12:06][D][wifi:373]: Starting scan...
[16:12:11][D][wifi:388]: Found networks:
[16:12:11][D][wifi:437]: - 'TeleCentro-75ef' (D8:D7:75:63:75:F4) ▂▄▆█
[16:12:11][D][wifi:437]: - 'TeleCentro Wifi' (DA:D7:75:63:76:F6) ▂▄▆█
[16:12:11][W][wifi:442]: No matching network found!

I searched the internet, but the solutions I found did not work for me. I have a 2.4 and 5 GHZ router.
Can anyone help me? This is the yaml

esphome:
  name: esp-indoor

esp32:
  board: nodemcu-32s
  framework:
    type: arduino

# Enable logging
logger:

# Enable Home Assistant API
api:

ota:
  password: "aad24fe055fdc3099d48d82b92aaa17e"

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

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "Esp-Indoor Fallback Hotspot"
    password: "KY8ELBSOf7pS"

captive_portal:

switch:
  - platform: gpio
    name: "Relay"
    pin: GPIO2
    inverted: yes
  - platform: gpio
    name: "Relay"
    pin: GPIO0
    inverted: yes
  - platform: gpio
    name: "Relay"
    pin: GPIO4
    inverted: yes
  - platform: gpio
    name: "Relay"
    pin: GPIO16
    inverted: yes
  - platform: gpio
    name: "Relay"
    pin: GPIO17
    inverted: yes
    
sensor:
  - platform: dht
    pin: GPIO15
    temperature:
      name: "Living Room Temperature"
    humidity:
      name: "Living Room Humidity"
    update_interval: 60s

Check your secrets.

Thank you for your response. But unfortunately I don’t think that’s the problem. The password is very simple and I made sure it is spelled correctly in the SECRETS section.

What about the ssid?

I checked that too.

The log shows it finding 2 wifi networks, so is either of them the one in secrets?

exactly. Is one of them

I tried it without the secrets and it worked !!! I am connected !!! THANK YOU

1 Like

What do you mean “tried it without the secrets”? WHat did you enter in your yaml?

He wrote the password as clear text instead of using

!secret wifi_password