feat: stepper logic

This commit is contained in:
xGlc
2026-04-14 21:31:59 +02:00
parent 07d93402b3
commit f94073e1ea
3 changed files with 73 additions and 2 deletions

View File

@@ -9,5 +9,9 @@ import display_program
# led program
import led_program
_thread.start_new_thread(led_program.boostrap, ())
_thread.start_new_thread(display_program.display, ())
# motor
import motor
# _thread.start_new_thread(led_program.boostrap, ())
# _thread.start_new_thread(display_program.display, ())
_thread.start_new_thread(motor.motor_run, ())