fixed time

This commit is contained in:
2025-11-04 21:09:40 +01:00
parent 8196ae4601
commit 4f02a8f3d0
14 changed files with 120 additions and 129 deletions

View File

@@ -27,6 +27,7 @@ StaticJsonDocument<128> build_telemetry_json(DeviceTelemetry data) {
StaticJsonDocument<128> doc;
doc["uptime_seconds"] = data.uptime_seconds;
doc["heap_percent"] = data.heap_used_percent;
doc["temperature"] = data.temperature;
return doc;
}