Remove screen override timeout to allow drawing to persist indefinitely

This commit is contained in:
Adolfo Reyna
2026-06-01 14:13:38 -04:00
parent 8302db03db
commit f443da0352
2 changed files with 1 additions and 10 deletions
+1 -6
View File
@@ -103,12 +103,7 @@ def main():
# A. Handle non-blocking MCP client connection updates
mcp.update()
# B. Check if custom draw text override has expired
if mcp.override_active and time.ticks_diff(now, mcp.override_timeout) > 0:
print("MCP Screen override expired. Returning to status dashboard...")
mcp.override_active = False
force_dashboard_redraw = True
# C. Draw local dashboard (if not overridden by MCP draw text commands)
if not mcp.override_active:
if force_dashboard_redraw or time.ticks_diff(now, last_dashboard_update) >= dashboard_update_interval_ms: