14 lines
231 B
Python
14 lines
231 B
Python
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, ())
|