feat: add SDCardManager rename method and EInkDisplay improvements

- Add rename() method to SDCardManager for file/directory moves
- Improve EInkDisplay grayscale handling
This commit is contained in:
cottongin
2026-01-28 09:57:45 -05:00
parent bd4e670750
commit dede09001c
2 changed files with 15 additions and 6 deletions

View File

@@ -29,6 +29,7 @@ class SDCardManager {
bool exists(const char* path) { return sd.exists(path); }
bool remove(const char* path) { return sd.remove(path); }
bool rmdir(const char* path) { return sd.rmdir(path); }
bool rename(const char* oldPath, const char* newPath) { return sd.rename(oldPath, newPath); }
bool openFileForRead(const char* moduleName, const char* path, FsFile& file);
bool openFileForRead(const char* moduleName, const std::string& path, FsFile& file);