Added UART as a communication interface option.

This commit is contained in:
2026-01-19 21:24:35 +02:00
parent 11b98166d1
commit 094b1a9620
10 changed files with 1219 additions and 1 deletions

View File

@@ -513,6 +513,9 @@ void loop()
lastWsCleanup = millis();
}
// Process UART command input from external devices (LCD panel, buttons)
communication.loop();
// 🔥 DEBUG: Log every 10 seconds to verify we're still running
static unsigned long lastLog = 0;
if (millis() - lastLog > 10000) {