#include #include #include namespace tt::lvgl { #define TAG "tt_lv_label" bool label_set_text_file(lv_obj_t* label, const char* filepath) { auto text = hal::sdcard::withSdCardLock>(std::string(filepath), [filepath]() { return file::readString(filepath); }); if (text != nullptr) { lv_label_set_text(label, reinterpret_cast(text.get())); return true; } else { return false; } } } // namespace