新聞中心

EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > 28BYJ-48步進(jìn)電機(jī)加ULN2003驅(qū)動(dòng)的51單片機(jī)的代碼

28BYJ-48步進(jìn)電機(jī)加ULN2003驅(qū)動(dòng)的51單片機(jī)的代碼

作者: 時(shí)間:2016-11-28 來(lái)源:網(wǎng)絡(luò) 收藏
#include
#define uint unsigned int
#define ucher unsigned char
unsigned char code ZZ[8]={0x09,0x01,0x03,0x02,0x06,0x04,0x0c,0x08};//28BYJ-48正時(shí)鐘旋轉(zhuǎn)相序表
unsigned char code FZ[8]={0x08,0x0c,0x04,0x06,0x02,0x03,0x01,0x09};//28BYJ-48逆時(shí)鐘旋轉(zhuǎn)相序表
void delay(unsigned int n)//毫秒級(jí)延時(shí)
{
unsigned int i,j;
for(j=n;j>0;j--)
for(i=112;i>0;i--);
}
void BGdelay(unsigned int n)//步進(jìn)延時(shí)
{
unsigned int i;
for(n;n>0;n--)
for(i=96;i>0;i--);
}
void main(void)//入口函數(shù)
{
unsigned int i;
delay(500);
while(1)
{
for(i=0;i<8;i++) //旋轉(zhuǎn)45度
{
P1=FZ[i];
BGdelay(1);
}
}
}


評(píng)論


技術(shù)專(zhuān)區(qū)

關(guān)閉