Update esp32-cam.ino

pico-v0.37-esp32
alanbjohnston 3 years ago committed by GitHub
parent fd4d2d759f
commit 06aedad827
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -304,7 +304,7 @@ void load_files() {
SPIFFS.begin();
File f;
f = SPIFFS.open("sstv_image_1_320_x_240.jpg", "r");
f = SPIFFS.open("/sstv_image_1_320_x_240.jpg", "r");
// if (f) {
if (false) {
Serial.println("Image sstv_image_1_320_x_240.jpg already in FS");
@ -320,7 +320,7 @@ void load_files() {
f.close();
}
f = SPIFFS.open("sstv_image_2_320_x_240.jpg", "r");
f = SPIFFS.open("/sstv_image_2_320_x_240.jpg", "r");
if (f) {
Serial.println("Image sstv_image_2_320_x_240.jpg already in FS");
f.close();

Loading…
Cancel
Save

Powered by TurnKey Linux.