For the connection I used the following code in the Ardunio IDE:
Code: Select all
WiFi.mode(WIFI_STA);
WiFi.setHostname("esp32");
WiFi.begin(ssid, password);
Serial.print("Connecting to WiFi ..");
while (WiFi.status() != WL_CONNECTED) {
Serial.print('.');
delay(1000);
}
Serial.println(WiFi.localIP());
}
Code: Select all
19:48:30.481 -> E (64328) wifi:Set status to INIT
19:48:30.529 -> E (64348) wifi:Set status to INIT
19:48:30.529 -> E (64367) wifi:Set status to INIT
19:48:30.577 -> E (64385) wifi:Set status to INIT
19:48:30.577 -> E (64403) wifi:Set status to INIT
19:48:30.577 -> E (64418) wifi:Set status to INIT
19:48:30.625 -> E (64433) wifi:Set status to INIT
19:48:30.625 -> E (64450) wifi:Set status to INIT
19:48:30.625 -> E (64466) wifi:Set status to INIT
19:48:30.672 -> E (64480) wifi:Set status to INIT
19:48:30.672 -> E (64499) wifi:Set status to INIT
19:48:30.672 -> E (64517) wifi:Set status to INIT
19:48:30.719 -> E (64542) wifi:Set status to INIT
19:48:31.373 -> ...........
Any tips on how to check the settings on my network?
I never had connection problems with other devices (laptop, iPhone/iPad, Raspberry).
Thanks in advance for your help.