From 5c9c12c8fb8126447fdde4755aeadc683fba06da Mon Sep 17 00:00:00 2001 From: Yohanna Philip Abana <57155932+yohanna02@users.noreply.github.com> Date: Sat, 10 Aug 2024 01:26:17 +0100 Subject: [PATCH] Update image_collection.h I fixed a spelling mistake in the include path for the camera.h header file. This should fix the build error that was preventing the compiler from finding the header file. --- src/eloquent_esp32cam/viz/image_collection.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/eloquent_esp32cam/viz/image_collection.h b/src/eloquent_esp32cam/viz/image_collection.h index 513e50f6..b9383e60 100644 --- a/src/eloquent_esp32cam/viz/image_collection.h +++ b/src/eloquent_esp32cam/viz/image_collection.h @@ -1,7 +1,7 @@ #ifndef ELOQUENT_ESP32CAM_VIZ_IMAGE_COLLECTION_H #define ELOQUENT_ESP32CAM_VIZ_IMAGE_COLLECTION_H -#include "../camera/Camera.h" +#include "../camera/camera.h" #include "../extra/exception.h" #include "../extra/esp32/wifi/sta.h" #include "../extra/esp32/http/server.h" @@ -73,4 +73,4 @@ namespace eloq { } } -#endif \ No newline at end of file +#endif