本文包含原理图、PCB、源代码、封装库、中英文PDF等资源
您需要 登录 才可以下载或查看,没有账号?注册会员
×
[color=ound-color:rgb(252,]42BYGHW208步进电机 步进角1.8度 可是写的程序 为什么转不了1.8度,而是转了7.2度?(用L298N驱动)[color=ound-color:rgb(252,]
[color=ound-color:rgb(252,]程序如下:#include <stc12c.h>code uchar run_left[]={0x01,0x04,0x02,0x08};void Delay(unsigned int i){ while(--i);}void Turn_left(){uchar x;for(x=0;x<4;x++) {P2=run_left[x];Delay(5000);}}void main() {Turn_left();while(1);} |