日本黄色一级经典视频|伊人久久精品视频|亚洲黄色色周成人视频九九九|av免费网址黄色小短片|黄色Av无码亚洲成年人|亚洲1区2区3区无码|真人黄片免费观看|无码一级小说欧美日免费三级|日韩中文字幕91在线看|精品久久久无码中文字幕边打电话

當(dāng)前位置:首頁 > 單片機(jī) > 單片機(jī)
[導(dǎo)讀] 直流電機(jī)調(diào)速C51程序#includeunsignedcharcodef_rotation[4]={0x02,0x04,0x08,0x10};//正轉(zhuǎn)表格unsignedcharcodeb_rotation[4]={0x10,0x08,0x040,0x02};//反轉(zhuǎn)表格voiddelay(unsignedinti)//延時{while

直流電機(jī)調(diào)速C51程序

#include

unsignedcharcodef_rotation[4]={0x02,0x04,0x08,0x10};//正轉(zhuǎn)表格
unsignedcharcodeb_rotation[4]={0x10,0x08,0x040,0x02};//反轉(zhuǎn)表格



voiddelay(unsignedinti)//延時
{
while(--i);
}

main()
{

unsignedchari;

while(1)
{
for(i=0;i<4;i++)//4相
{
p1=f_rotation[i];//輸出對應(yīng)的相可以自行換成反轉(zhuǎn)表格
delay(10000);//改變這個參數(shù)可以調(diào)整電機(jī)轉(zhuǎn)速
}
}
}

10.直流電機(jī)調(diào)速


#include
sbitkey1=p3^1;
sbitPWM=p1^5;
unsignedcharcycle;//定義周期該數(shù)字x基準(zhǔn)定時時間如果是10則周期是10x0.1ms
unsignedcharpwm_on;//定義高電平時間
voiddelay(unsignedintcnt)
{
while(--cnt);
}


main()
{
unsigned char pwm_num;//定義檔位
tmod |=0x01;//定時器設(shè)置 1ms in 12m crystal
th0=(65536-1000)/256;
tl0=(65536-1000)%256;//定時1ms
ie= 0x82; //打開中斷
tr0=1;

cycle = 10;// 時間可以調(diào)整 這個是10步調(diào)整 周期10ms 8位pwm就是256步
while(1)
{
if(!key1)
{
delay(10000);
if(!key1)
{
pwm_num++;
if(pwm_num==4)pwm_num=0;
switch(pwm_num){
case 0:p1=0xfe;pwm_on=0;break;//高電平時長
case 1:p1=0xfd;pwm_on=4;break;
case 2:p1=0xfb;pwm_on=6;break;
case 3:p1=0xf7;pwm_on=8;break;
default:break;
}
}

}
}

}


void tim(void) interrupt 1 using 1
{
statICunsigned char count; //
th0=(65536-1000)/256;
tl0=(65536-1000)%256;//定時1ms

if (count==pwm_on)
{
pwm = 1; //燈滅
}
count++;
if(count == cycle)
{
count=0;
if(pwm_on!=0) //如果左右時間是0 保持原來狀態(tài)
pwm = 0;//燈亮

}

}


本站聲明: 本文章由作者或相關(guān)機(jī)構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點,本站亦不保證或承諾內(nèi)容真實性等。需要轉(zhuǎn)載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請及時聯(lián)系本站刪除( 郵箱:macysun@21ic.com )。
換一批
延伸閱讀
關(guān)閉