Display available space on SDCard

This commit is contained in:
jpirnay
2026-03-16 20:26:36 +01:00
parent 125ef361d2
commit 87bbfb26af
4 changed files with 23 additions and 0 deletions
+3
View File
@@ -54,6 +54,9 @@ bool HalStorage::writeFile(const char* path, const String& content) {
bool HalStorage::ensureDirectoryExists(const char* path) { HAL_STORAGE_WRAPPED_CALL(ensureDirectoryExists, path); }
uint64_t HalStorage::sdTotalBytes() const { HAL_STORAGE_WRAPPED_CALL(totalBytes); }
uint64_t HalStorage::sdUsedBytes() const { HAL_STORAGE_WRAPPED_CALL(usedBytes); }
class HalFile::Impl {
public:
Impl(FsFile&& fsFile) : file(std::move(fsFile)) {}
+3
View File
@@ -45,6 +45,9 @@ class HalStorage {
bool openFileForWrite(const char* moduleName, const String& path, HalFile& file);
bool removeDir(const char* path);
uint64_t sdTotalBytes() const;
uint64_t sdUsedBytes() const;
static HalStorage& getInstance() { return instance; }
class StorageLock; // private class, used internally
+2
View File
@@ -326,6 +326,8 @@ void CrossPointWebServer::handleStatus() const {
doc["rssi"] = apMode ? 0 : WiFi.RSSI();
doc["freeHeap"] = ESP.getFreeHeap();
doc["uptime"] = millis() / 1000;
doc["sdTotal"] = Storage.sdTotalBytes();
doc["sdUsed"] = Storage.sdUsedBytes();
String json;
serializeJson(doc, json);
+15
View File
@@ -124,6 +124,10 @@
<span class="label">Free Memory</span>
<span class="value" id="free-heap"></span>
</div>
<div class="info-row">
<span class="label">SD Card</span>
<span class="value" id="sd-space"></span>
</div>
</div>
<div class="card">
@@ -132,6 +136,14 @@
</p>
</div>
<script>
function formatBytes(bytes) {
if (!bytes) return 'N/A';
const units = ['B', 'KB', 'MB', 'GB'];
let val = bytes, i = 0;
while (val >= 1024 && i < units.length - 1) { val /= 1024; i++; }
return parseFloat(val.toFixed(2)).toLocaleString() + ' ' + units[i];
}
async function fetchStatus() {
try {
const response = await fetch('/api/status');
@@ -144,6 +156,9 @@
document.getElementById('free-heap').textContent = data.freeHeap
? data.freeHeap.toLocaleString() + ' bytes'
: 'N/A';
document.getElementById('sd-space').textContent = data.sdTotal
? formatBytes(data.sdUsed) + ' / ' + formatBytes(data.sdTotal)
: 'N/A';
} catch (error) {
console.error('Error fetching status:', error);
}