feat: inital commit

This commit is contained in:
xGlc
2026-04-11 23:31:41 +02:00
parent c4fe9a7213
commit 07d93402b3
5 changed files with 1214 additions and 0 deletions

13
main.py Normal file
View File

@@ -0,0 +1,13 @@
import _thread
from machine import soft_reset
# display
import display_program
# MODULES
# led program
import led_program
_thread.start_new_thread(led_program.boostrap, ())
_thread.start_new_thread(display_program.display, ())