Files
micropython-testing/main.py
2026-05-10 13:03:24 +02:00

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, ())