remove sleep from display controller due to negative impact on scrolling text

This commit is contained in:
Chuck
2025-07-08 20:23:45 -05:00
parent 49f7677b37
commit 1eedcbac68

View File

@@ -1080,8 +1080,8 @@ class DisplayController:
# Force clear on the next iteration after an error to be safe
self.force_clear = True
# Add a short sleep to prevent high CPU usage
time.sleep(0.1)
# Add a short sleep to prevent high CPU usage but ruin scrolling text
# time.sleep(0.1)
except KeyboardInterrupt:
logger.info("Display controller stopped by user")