garage/garage_esp32/garage_esp32.ino aktualisiert
This commit is contained in:
@@ -5,6 +5,11 @@
|
||||
|
||||
Note: Usage of wifi blocks the ADC2 analog pins. ADC1 pins can be used. See https://github.com/espressif/arduino-esp32/issues/102#issuecomment-295272351
|
||||
*/
|
||||
/*
|
||||
Achtung: Mit der aktuellen Version 3.3.10 der esp32 Software landet der Controller im
|
||||
Boot Loop. Erst nach dem Downgrade auf 3.0.7 lief alles durch.
|
||||
Siehe auch https://forum.arduino.cc/t/esp32-rebooting-loop-with-espasyncwebserver/1334275
|
||||
*/
|
||||
|
||||
#include <WiFi.h>
|
||||
#include <AsyncTCP.h>
|
||||
@@ -270,7 +275,7 @@ void setup() {
|
||||
|
||||
WiFi.begin(ssid, password);
|
||||
while (WiFi.status() != WL_CONNECTED) {
|
||||
delay(1000);
|
||||
delay(3000);
|
||||
Serial.println("Connecting to WiFi...");
|
||||
}
|
||||
Serial.println(WiFi.localIP());
|
||||
|
||||
Reference in New Issue
Block a user