split out

This commit is contained in:
2026-06-21 00:56:13 -04:00
parent 8c932a8d86
commit 8cf50c9413
6 changed files with 285 additions and 270 deletions
+10
View File
@@ -0,0 +1,10 @@
from rgbmatrix import graphics
from utils.data import ASSET_DIR
import os
font = graphics.Font()
font_small = graphics.Font()
font_big = graphics.Font()
font.LoadFont(os.path.join(ASSET_DIR, "fonts/7x13.bdf"))
font_small.LoadFont(os.path.join(ASSET_DIR, "fonts/5x7.bdf"))
font_big.LoadFont(os.path.join(ASSET_DIR, "fonts/9x18.bdf"))