diff --git a/data/audio/some_song.mp3 b/data/audio/some_song.mp3
new file mode 100644
index 0000000..e69de29
diff --git a/data/test_file.txt b/data/test_file.txt
new file mode 100644
index 0000000..e69de29
diff --git a/include/lv_conf.h b/include/lv_conf.h
index aab9a5d..283862f 100644
--- a/include/lv_conf.h
+++ b/include/lv_conf.h
@@ -285,7 +285,7 @@
*LV_LOG_LEVEL_ERROR Only critical issue, when the system may fail
*LV_LOG_LEVEL_USER Only logs added by the user
*LV_LOG_LEVEL_NONE Do not log anything*/
- #define LV_LOG_LEVEL LV_LOG_LEVEL_INFO
+ #define LV_LOG_LEVEL LV_LOG_LEVEL_WARN
/*1: Print the log with 'printf';
*0: User need to register a callback with `lv_log_register_print_cb()`*/
diff --git a/platformio.ini b/platformio.ini
index b47e359..4c5b70a 100644
--- a/platformio.ini
+++ b/platformio.ini
@@ -13,6 +13,7 @@ platform = espressif32
board = esp32doit-devkit-v1
framework = arduino
monitor_speed = 115200
+board_build.filesystem = littlefs
lib_deps =
ruiseixasm/Versatile_RotaryEncoder@^1.3.1
bodmer/TFT_eSPI@^2.5.43
diff --git a/src/input/user_input_manager.cpp b/src/input/user_input_manager.cpp
index 15393ef..455d99f 100644
--- a/src/input/user_input_manager.cpp
+++ b/src/input/user_input_manager.cpp
@@ -51,10 +51,8 @@ namespace UserInputManager
void pushEvent(InputEvent event)
{
- Serial.println("pushing new event " + String(event));
for (auto &queue : input_event_queues)
{
- Serial.println("pushing event to queue " + queue.first + " (" + String(queue.second.size()) + ")");
queue.second.push(event);
}
}
diff --git a/src/main.cpp b/src/main.cpp
index 0e0d7fb..795a8ff 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -15,6 +15,7 @@
#include
#include
#include