Small cleanup

This commit is contained in:
Dave Allie
2025-12-06 20:24:24 +11:00
parent 4ecfdea1a1
commit ad8cee12ab
3 changed files with 1 additions and 4 deletions

View File

@@ -205,7 +205,7 @@ void loop() {
delay(10);
static unsigned long lastMemPrint = 0;
if (Serial && millis() - lastMemPrint >= 2000) {
if (Serial && millis() - lastMemPrint >= 5000) {
Serial.printf("[%lu] Memory - Free: %d bytes, Total: %d bytes, Min Free: %d bytes\n", millis(), ESP.getFreeHeap(),
ESP.getHeapSize(), ESP.getMinFreeHeap());
lastMemPrint = millis();