mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-04-10 21:03:01 +00:00
17 lines
426 B
Python
Executable File
17 lines
426 B
Python
Executable File
#!/usr/bin/env python3
|
|
import logging
|
|
import sys
|
|
|
|
# Configure logging before importing any other modules
|
|
logging.basicConfig(
|
|
level=logging.INFO,
|
|
format='%(asctime)s.%(msecs)03d - %(levelname)s:%(name)s:%(message)s',
|
|
datefmt='%Y-%m-%d %H:%M:%S',
|
|
stream=sys.stdout # Explicitly set to stdout
|
|
)
|
|
|
|
# Now import the display controller
|
|
from src.display_controller import main
|
|
|
|
if __name__ == "__main__":
|
|
main() |