Temporarily backport app updates from apps repo

This commit is contained in:
Willy-JL
2023-11-12 11:06:02 +00:00
parent 79e7f491fe
commit e309fa8a88
1498 changed files with 1325977 additions and 20227 deletions

View File

@@ -44,9 +44,12 @@ CameraSuite* camera_suite_app_alloc() {
// Set defaults, in case no config loaded
app->orientation = 0; // Orientation is "portrait", zero degrees by default.
app->haptic = 1; // Haptic is on by default
app->speaker = 1; // Speaker is on by default
app->led = 1; // LED is on by default
app->dither = 0; // Dither algorithm is "Floyd Steinberg" by default.
app->flash = 1; // Flash is enabled by default.
app->haptic = 1; // Haptic is enabled by default
app->jpeg = 0; // Save JPEG to ESP32-CAM sd-card is disabled by default.
app->speaker = 1; // Speaker is enabled by default
app->led = 1; // LED is enabled by default
// Load configs
camera_suite_read_settings(app);