From a2217733f1aed303c4ea115302e80f6bbdd258ae Mon Sep 17 00:00:00 2001
From: Sebastian Pape <pape@vr.rwth-aachen.de>
Date: Fri, 27 Oct 2023 18:48:37 +0200
Subject: [PATCH] Increase Wifi Setup Time

---
 MotionToPhotonServer.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MotionToPhotonServer.cpp b/MotionToPhotonServer.cpp
index 91e1187..10d44d2 100644
--- a/MotionToPhotonServer.cpp
+++ b/MotionToPhotonServer.cpp
@@ -35,7 +35,7 @@
 
 		WiFi.softAP(ssid, password);
 		WiFi.softAPConfig(local_ip, gateway, subnet);
-		delay(100);
+		delay(5000);
 
 		server.on("/", [this](){this->pageIndex();} );
 		server.on("/measure", [this](){this->pageMeasure();});
-- 
GitLab