18 lines
303 B
Python
18 lines
303 B
Python
import _thread
|
|
|
|
from machine import soft_reset
|
|
|
|
# display
|
|
import display_program
|
|
|
|
# MODULES
|
|
# led program
|
|
import led_program
|
|
|
|
# motor
|
|
import motor
|
|
|
|
# _thread.start_new_thread(led_program.boostrap, ())
|
|
_thread.start_new_thread(display_program.display, ())
|
|
# _thread.start_new_thread(motor.motor_run, ())
|