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

View File

@ -0,0 +1,13 @@
# can_run_demo.py
from can_main import can_motor_contral
if __name__ == "__main__":
can_motor_contral(
direction=1,
angle=90,
microstep=32,
can_id=0x03,
channel='vcan0',
listen_feedback=True
)