欢迎来到天天文库
浏览记录
ID:38471843
大小:30.50 KB
页数:4页
时间:2019-06-13
《步进电机调速》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、#includesbitF1=P1^0;sbitF2=P1^1;sbitF3=P1^2;sbitF4=P1^3;unsignedcharmotorstep=0;unsignedintmotortimer=0;unsignedintmotordelay,speed=1,TIM,CT;voidinitmotor(){F1=1;F2=1;F3=1;F4=1;}voidsetmotor(){if(speed==0)return;motordelay=speed;switch(motorstep){case0:if(TIM){F1=0;F2=1;F3=1;F4=1;
2、motorstep=1;TIM=0;}break;case1:if(TIM){F1=0;F2=0;F3=1;F4=1;motorstep=2;TIM=0;}break;case2:if(TIM){F1=1;F2=0;F3=1;F4=1;motorstep=3;TIM=0;}break;case3:if(TIM){F1=1;F2=0;F3=0;F4=1;motorstep=4;TIM=0;}break;case4:if(TIM){F1=1;F2=1;F3=0;F4=1;motorstep=5;TIM=0;}break;case5:if(TIM){F1=1;F2=1;F3=0;
3、F4=0;motorstep=6;TIM=0;}break;case6:if(TIM){F1=1;F2=1;F3=1;F4=0;motorstep=7;TIM=0;}break;case7:if(TIM){F1=0;F2=1;F3=1;F4=0;motorstep=0;TIM=0;}break;}}voidsystem_lni(){TMOD
4、=0x11;TH0=0xdc;TL0=0x00;IE=0x8a;TR0=1;}voidmain(){system_lni();initmotor();while(1){setmotor();}}voidtimer0_()interrup
5、t1{TH0=0xfe;TL0=0x33;if(CT++==5){TIM=1;CT=0;}}
此文档下载收益归作者所有