feat: 初始化项目,添加电机控制、CAN通信、QT界面等模块

This commit is contained in:
琉璃月光
2025-08-13 12:36:04 +08:00
commit 9477f25a51
60 changed files with 5816 additions and 0 deletions

9
motor_control/test.py Normal file
View File

@ -0,0 +1,9 @@
import time
print("守护进程已启动,将持续运行...")
try:
while True:
time.sleep(1)
except KeyboardInterrupt:
print("守护进程已停止")