单片机源码
#include<reg52.h>
#define uchar unsigned char
#define uint unsigned int
#define MotorData P2 //步进电机控制接口定义
sbit A=P1^0;
sbit F=P1^1;
uchar phasecw[4] ={0x40,0x20,0x10,0x08};//正转 电机导通相序 D-C-B-A
uchar phaseccw[4]={0x08,0x10,0x20,0x40};//反转 电机导通相序 A-B-C-D
//ms延时函数 j
void Delay_xms(uint x)
{
uint i,j;
for(i=0;i<x;i++)
for(j=0;j<112;j++);
}
//顺时针转动
void MotorCW(void)
{
uchar i;
for(i=0;i<4;i++)
{
MotorData=phasecw[ i];
Delay_xms(4);//转速调节
}
}
//逆时针转动
void MotorCCW(void)
{
uchar i;
for(i=0;i<4;i++)
{
MotorData=phaseccw[ i];
Delay_xms(4);//转速调节
}
}
//停止转动
void MotorStop(void)
{
MotorData=0x00;
}
//主函数
void main(void)
{
uint i;
Delay_xms(50);//等待系统稳定
while(1)
{
if(A==0) //想在这设个 停止函数 就让他转两圈就不再转 等待下一次指令
{
for(i=0;i<500;i++)
{
MotorCW(); //顺时针转动
}
MotorStop(); //停止转动
Delay_xms(500);
}
else if (F==0)
{
for(i=0;i<500;i++)
{
MotorCCW(); //逆时针转动
}
MotorStop(); //停止转动
Delay_xms(500);
}
}
}
|