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