fix: correct XIAO RS485 UART pin mapping

This commit is contained in:
2026-07-26 18:26:36 -06:00
parent fea549d1e2
commit 753d13157e
9 changed files with 19 additions and 7 deletions
@@ -687,6 +687,12 @@ static void update_diagnostics_overlay()
text += String(sensor_node.framesDropped);
text += "/";
text += String(sensor_node.parseErrors + sensor_node.oversizedFrames);
text += "\n Raw bytes/age: ";
text += String(sensor_node.bytesReceived);
text += "/";
text += sensor_node.bytesReceived
? String(millis() - sensor_node.lastByteMs) + " ms"
: String("--");
text += "\n Frame age: ";
text += sensor_node.frameReceived
? String(millis() - sensor_node.lastFrameMs) + " ms"