Enhance NVSStorageHandler with filtering capabilities and update constructor to accept namespace

This commit is contained in:
GW_MC
2026-01-19 12:55:12 +08:00
parent 01c36669cf
commit 18ac21e257
4 changed files with 164 additions and 12 deletions

View File

@@ -50,7 +50,9 @@ void app_main(void) {
throw std::runtime_error("Failed to create LVGL mutex");
}
//
KVStorageHandler* kv_storage_handler = new NVSStorageHandler();
KVStorageHandler* kv_storage_handler = new NVSStorageHandler(
"storage"
);
DisplayHandler* display_handler = new EInkDisplayHandler(touch_event_queue, lvgl_mutex);
TouchHandler* touch_handler = new EInkTouchHandler(touch_event_queue);
//