Update TimeLapse.ino
This commit is contained in:
parent
83c6ecd763
commit
3889e11ea6
|
@ -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();
|
||||
|
||||
|
@ -16,6 +16,11 @@ void setup()
|
|||
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()
|
||||
|
|
Loading…
Reference in New Issue