好文档 - 专业文书写作范文服务资料分享网站

51单片机控制无刷直流电机程序(7月20日).pdf

天下 分享 时间: 加入收藏 我要投稿 点赞

学 海 无 涯

#include #define out_put P2 sbit SA = P1^0; sbit SB = P1^1; sbit SC = P1^2; sbit DIR = P1^3; void Forward(); void Backward(); void main(void) { while(1) { if(!DIR) { Forward(); } else { Backward(); } } }

void Forward(void) { if(SA&&(!SB)&&SC) //101 out_put = 0x09; else if(SA&&(!SB)&&(!SC)) //100 out_put = 0x0A; else if(SA&&SB&&(!SC)) //110 out_put = 0x22; else if((!SA)&&SB&&(!SC)) //010 out_put = 0x24; else if((!SA)&&SB&&SC) //011 out_put = 0x14; else if((!SA)&&(!SB)&&(SC)) //001 out_put = 0x11; }

void Backward(void) { if(SA&&(!SB)&&SC) //101 out_put = 0x24; else if((!SA)&&(!SB)&&(SC)) //001 out_put = 0x22; else if((!SA)&&(SB)&&(SC)) //011

1

学 海 无 涯

}

out_put = 0x0A;

else if((!SA)&&(SB)&&(!SC)) //010 out_put = 0x09;

else if((SA)&&(SB)&&(!SC)) //110 out_put = 0x11;

else if((SA)&&(!SB)&&(!SC)) //100 out_put = 0x14;

2

51单片机控制无刷直流电机程序(7月20日).pdf

学海无涯#include#defineout_putP2sbitSA=P1^0;sbitSB=P1^1;sbitSC=P1^2;sbitDIR=P1^3;voidForward();voidBackward();voidmain(void){while(1){if(!DIR)
推荐度:
点击下载文档文档为doc格式
9b40k84o7503ypi6bk157e16g2f4sy00osp
领取福利

微信扫码领取福利

微信扫码分享