欧美极品高清xxxxhd,国产日产欧美最新,无码AV国产东京热AV无码,国产精品人与动性XXX,国产传媒亚洲综合一区二区,四库影院永久国产精品,毛片免费免费高清视频,福利所导航夜趣136

 找回密碼
 立即注冊(cè)

QQ登錄

只需一步,快速開始

搜索
查看: 1738|回復(fù): 0
打印 上一主題 下一主題
收起左側(cè)

單片機(jī)控制ULN2003步進(jìn)電機(jī)C語言

[復(fù)制鏈接]
跳轉(zhuǎn)到指定樓層
樓主
ID:601883 發(fā)表于 2019-8-20 10:57 | 只看該作者 回帖獎(jiǎng)勵(lì) |倒序?yàn)g覽 |閱讀模式
#include<reg52.h>
#define uchar unsigned char
#define uint  unsigned int
#define MotorData P0                    //步進(jìn)電機(jī)控制接口定義
uchar phasecw[4] ={0x08,0x04,0x02,0x01};//正轉(zhuǎn) 電機(jī)導(dǎo)通相序 D-C-B-A
uchar phaseccw[4]={0x01,0x02,0x04,0x08};//反轉(zhuǎn) 電機(jī)導(dǎo)通相序 A-B-C-D
sbit key1 = P3^5;
sbit key2 = P3^4;
//ms延時(shí)函數(shù)
void Delay_xms(uint x)
{
uint i,j;
for(i=0;i<x;i++)
  for(j=0;j<112;j++);
}
//順時(shí)針轉(zhuǎn)動(dòng)
void MotorCW(void)
{
uchar i;
for(i=0;i<4;i++)
  {
   MotorData=phasecw[i];
   Delay_xms(8);//轉(zhuǎn)速調(diào)節(jié)
  }
}
//逆時(shí)針轉(zhuǎn)動(dòng)
void MotorCCW(void)
{
uchar i;
for(i=0;i<4;i++)
  {
   MotorData=phaseccw[i];
   Delay_xms(8);//轉(zhuǎn)速調(diào)節(jié)
  }
}
//停止轉(zhuǎn)動(dòng)
void MotorStop(void)
{
MotorData=0x00;
}
//主函數(shù)
void main(void)
{
uint i;
Delay_xms(50);//等待系統(tǒng)穩(wěn)定
while(1)
{
        if(key2 == 1)
        {
                for(i=0;i<20;i++)
                {
                        MotorCW();   //順時(shí)針轉(zhuǎn)動(dòng)
                }
                            MotorStop();  //停止轉(zhuǎn)動(dòng)
            Delay_xms(10);


        }

  else if(key1 == 0)
  {
        for(i=0;i<20;i++)
        {
           MotorCCW();  //逆時(shí)針轉(zhuǎn)動(dòng)
        }
                    MotorStop();  //停止轉(zhuǎn)動(dòng)
            Delay_xms(100);

  }
  else
  {
           MotorStop();  //停止轉(zhuǎn)動(dòng)
            Delay_xms(10);
  }
  // MotorStop();  //停止轉(zhuǎn)動(dòng)
//  Delay_xms(500);  

}

}


分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏 分享淘帖 頂 踩
回復(fù)

使用道具 舉報(bào)

本版積分規(guī)則

小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術(shù)交流QQ群281945664

Powered by 單片機(jī)教程網(wǎng)

快速回復(fù) 返回頂部 返回列表