From 3889e11ea6a135fbab5fbf4e88401d904cae7064 Mon Sep 17 00:00:00 2001 From: Marcel Ochsendorf Date: Thu, 30 Jan 2020 16:26:14 +0100 Subject: [PATCH] Update TimeLapse.ino --- TimeLapse/TimeLapse.ino | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/TimeLapse/TimeLapse.ino b/TimeLapse/TimeLapse.ino index 9b71589..d2789b8 100644 --- a/TimeLapse/TimeLapse.ino +++ b/TimeLapse/TimeLapse.ino @@ -3,8 +3,8 @@ #include "camera.h" #include "lapse.h" -const char *ssid = "iPhone von Marcel"; -const char *password = "00000000"; +const char *ssid = "..."; +const char *password = "..."; void startCameraServer(); @@ -15,7 +15,12 @@ void setup() Serial.println(); initFileSystem(); initCamera(); - + + + + // startLapse(); -------- IF YOU WANT AUTO START THE TIMELAPSE + + WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { @@ -29,7 +34,7 @@ void setup() Serial.print(WiFi.localIP()); Serial.println("' to connect"); -// startLapse(); + } void loop()