小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

ADC0809與單片機(jī)仿真

 共同成長(zhǎng)888 2015-07-13

ADC0809與單片機(jī)仿真 

點(diǎn)擊查看原圖 adc0809單片機(jī)仿真 

程序:

//************ccp************//

#include<reg51.h>
#include<AD0809.h>

void main()  //主函數(shù)

 init_timer0();
   while(1)
   {
     handle_ad();
   }
}


void init_timer0()
{
 TMOD=0x02; //2
    TH0=0x14;//TH0=256-236;
    TL0=0x14; //TL0=256-236;
    IE=0x82;
    TR0=1;
}

void start()
{
  ST=0;
    ST=1;
    ST=0;
}

void set_OE()
{
 OE=1;
}

void clr_OE()
{
 OE=0;
}

void delay(uint t)   // delay 
{
 uchar i;
    while(t--)
 {
  for(i=0;i<120;i++);
 }
}
 
//*******數(shù)碼管顯示*******
void display()
{
 unsigned char j;
 for(j=0;j<=3;j++)
 { 
  P2=ledwei[j];
  if(j==1)
  {
   P0=display_c[count[j]];
   delay(1);
  }
  P0=display_cc[count[j]];
  delay(1);
 }
}

void handle(uint num)
{
 num=num*250;
 num= num/256;
 num=num*40; 
 count[0]=  num %10;
 count[1]=  num %100/10;     
 count[2]=  num %1000/100;
 count[3]=  num /1000;
}

void handle_ad()
{
 start();
    while(EOC==0);//等待轉(zhuǎn)換結(jié)束,轉(zhuǎn)換EOC=0
 set_OE();
    handle(P3);
    display();  // OE=0;   //高阻
 clr_OE();   //高阻
}

void timer0() interrupt 1
{

   CLK=~CLK;
}

 

//*************ccp*********************//

 

#ifndef _D0809_
#define _0809_

#include<reg51.h>

#define uint unsigned int
#define uchar unsigned char
uchar code display_cc[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};//共陰
uchar code display_c[]={0xbf,0x86,0xdb,0xcf,0xe6,0xed,0xfd,0x87,0xff,0xef};//共陰
uchar code ledwei[]={0xf7,0xfb,0xfd,0xfe};  
static uint count[]={0,0,0,0};  
sbit CLK=P1^3;
sbit ST=P1^2;
sbit EOC=P1^1;
sbit OE=P1^0;

//定義函數(shù)
void init_timer0(); //初始化
void start();
void set_OE();
void clr_OE();
void delay(uint t);
void display();
void handle(uint num);
void handle_ad();    //處理


#endif

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多