Hello,
I am planning to have an RV setup with home assistant. Basic functions should run without the rPi running. I have planned to use ESPHome and a NodeMCU for those basic functions. Turning on the water pump and some lights. I have small switches and some relais connected to the ESP. Works like a charm. When the rPi is on he connects via MQTT to home assistant.
Now I want the ESPHome to run even without Wifi being present. I would like to be able to save as much power (Turn the router off) and still being able to turn the light on/off.
When connected to Wifi everything works like a charm. When I turn the router off I see the ESP trying to connect to wifi constantly. And the application on the ESP seems not to work any longer.
[20:25:55][W][wifi:374]: No matching network found!
[20:26:00][D][wifi:304]: Starting scan...
[20:26:02][D][wifi:319]: Found networks:
[20:26:02][D][wifi:369]: - 'kabellos_internal'[redacted] (04:62:73:36:A4:78) [redacted]ββββ
[20:26:02][D][wifi:369]: - 'kabellos'[redacted] (04:62:73:36:A4:79) [redacted]ββββ
[20:26:02][D][wifi:369]: - 'kabellos_guest'[redacted] (04:62:73:36:A4:7A) [redacted]ββββ
[20:26:02][D][wifi:369]: - 'kabellos_iot'[redacted] (04:62:73:36:A4:7B) [redacted]ββββ
[20:26:02][D][wifi:369]: - 'Robonect Hx+'[redacted] (DE:4F:22:D1:93:71) [redacted]ββββ
[20:26:03][D][wifi:369]: - 'keinkabel_speed'[redacted] (34:31:C4:10:9D:32) [redacted]ββββ
[20:26:03][D][wifi:369]: - 'kabellos'[redacted] (D8:67:D9:C3:0F:11) [redacted]ββββ
[20:26:03][D][wifi:369]: - 'kabellos_iot'[redacted] (D8:67:D9:C3:0F:13) [redacted]ββββ
[20:26:03][D][wifi:369]: - 'kabellos_internal'[redacted] (D8:67:D9:C3:0F:10) [redacted]ββββ
[20:26:03][D][wifi:369]: - 'kabellos_guest'[redacted] (D8:67:D9:C3:0F:12) [redacted]ββββ
[20:26:03][D][wifi:369]: - 'EasyBox-065722'[redacted] (E0:51:63:06:57:80) [redacted]ββββ
[20:26:03][W][wifi:374]: No matching network found!
...
This is the Wifi section I have.
wifi:
ssid: !secret wifi_ssid_emil
password: !secret wifi_password_emil
fast_connect: false
ap:
ssid: !secret wifi_fallback_ssid
password: !secret wifi_fallback_password
manual_ip:
static_ip: 192.168.1.205
gateway: 192.168.1.1
subnet: 192.168.1.1
dns1: 8.8.8.8
dns2: 4.4.4.4
reboot_timeout: 0s
When I turn Wifi completely off in the ESP.yaml the application works smooth again.
I resetting the Wifi causing the trouble? Can I prevent this from happening?
Can someone point me into the right direction?
Regards
Ralf