Jan 6 - small updates
Jan 6 - small updates - the sd_mmc delete requires a leading "/" and if you use strings to add the slash it needs lots of memory ... - add more time to type in you ssid using wifimanagerpull/34/head
rodzic
90b94edde9
commit
9727de63d8
|
@ -1335,11 +1335,11 @@ bool init_wifi()
|
||||||
wm.setHostname(devname);
|
wm.setHostname(devname);
|
||||||
//wm.resetSettings(); // for debugging - erase the ssid every time
|
//wm.resetSettings(); // for debugging - erase the ssid every time
|
||||||
|
|
||||||
wm.setConnectTimeout(20); // how long to try to connect for before continuing
|
wm.setConnectTimeout(30); // how long to try to connect for before continuing
|
||||||
wm.setConfigPortalTimeout(30); // auto close configportal after n seconds
|
wm.setConfigPortalTimeout(60); // auto close configportal after n seconds
|
||||||
// res = wm.autoConnect(); // auto generated AP name from chipid
|
// res = wm.autoConnect(); // auto generated AP name from chipid
|
||||||
|
|
||||||
res = wm.autoConnect("esp32cam-config"); // use the devname defined above, with no password
|
res = wm.autoConnect("ESP32-CAM"); // use the devname defined above, with no password
|
||||||
//res = wm.autoConnect("AutoConnectAP","password"); // password protected ap
|
//res = wm.autoConnect("AutoConnectAP","password"); // password protected ap
|
||||||
|
|
||||||
if (res) {
|
if (res) {
|
||||||
|
@ -2000,7 +2000,7 @@ void the_camera_loop (void* pvParameter) {
|
||||||
|
|
||||||
we_are_already_stopped = 0;
|
we_are_already_stopped = 0;
|
||||||
|
|
||||||
delete_old_stuff();
|
//delete_old_stuff(); // move to loop
|
||||||
|
|
||||||
avi_start_time = millis();
|
avi_start_time = millis();
|
||||||
Serial.printf("\nStart the avi ... at %d\n", avi_start_time);
|
Serial.printf("\nStart the avi ... at %d\n", avi_start_time);
|
||||||
|
@ -2116,10 +2116,15 @@ void the_camera_loop (void* pvParameter) {
|
||||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
// loop() - loop runs at low prio, so I had to move it to the task the_camera_loop at higher priority
|
// loop() - loop runs at low prio, so I had to move it to the task the_camera_loop at higher priority
|
||||||
|
long next_delete = 1000;
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
long run_time = millis() - boot_time;
|
long run_time = millis() - boot_time;
|
||||||
|
|
||||||
|
if ( millis() > next_delete){
|
||||||
|
next_delete = millis() + (15 * 60 * 1000);
|
||||||
|
delete_old_stuff();
|
||||||
|
}
|
||||||
start_record_2nd_opinion = start_record_1st_opinion;
|
start_record_2nd_opinion = start_record_1st_opinion;
|
||||||
start_record_1st_opinion = digitalRead(12);
|
start_record_1st_opinion = digitalRead(12);
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue