Put libs and some includes into ./src tree, addresses #60

This commit is contained in:
Owen
2020-09-30 15:41:42 +02:00
parent a35817e716
commit 55512bc0e7
7 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@
#include "index_ov3660.h"
#include "viewers.h"
#include "css.h"
#include "favicons.h"
#include "src/favicons.h"
#include "storage.h"
//#define DEBUG_STREAM_DATA // Debug: dump info for each stream frame on serial port
@ -591,9 +591,9 @@ static esp_err_t cmd_handler(httpd_req_t *req){
}
else if(!strcmp(variable, "reboot")) {
Serial.print("REBOOT requested");
for (int i=0; i<50; i++) {
flashLED(20);
delay(20);
for (int i=0; i<20; i++) {
flashLED(50);
delay(50);
Serial.print('.');
}
Serial.printf("\nThats all folks...\n\n");

View File

@ -1,5 +1,5 @@
#include "esp_camera.h"
#include "jsonlib/jsonlib.cpp"
#include "src/jsonlib/jsonlib.h"
#include "storage.h"
// These are defined in the main .ino file