色婷婷AⅤ一区二区三区|亚洲精品第一国产综合亚AV|久久精品官方网视频|日本28视频香蕉

          新聞中心

          EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > AD8008實(shí)現(xiàn)A/D轉(zhuǎn)換

          AD8008實(shí)現(xiàn)A/D轉(zhuǎn)換

          作者: 時(shí)間:2016-11-17 來(lái)源:網(wǎng)絡(luò) 收藏
          C代碼:

          #include
          #include
          //#include
          sbit ST=P3^2;
          sbit EOC=P3^1;
          sbit OE=P3^0;
          sbit ADDA=P3^4;
          sbit ADDB=P3^5;
          sbit ADDC=P3^6;
          unsigned char a,b,c;
          unsigned char code dispbitcode[]={0x00,0x08,0x04,0x02,0x01};//共陰位碼
          unsigned char code dispcode[]={ 0X3F,/*0*/
          0X06,/*1*/
          0X5B,/*2*/
          0X4F,/*3*/
          0X66,/*4*/
          0X6D,/*5*/
          0X7D,/*6*/
          0X07,/*7*/
          0X7F,/*8*/
          0X6F,/*9*/
          };//共陰段碼
          /*************延時(shí)子程序*******************************/
          void delay(unsigned int x)//最小1毫秒
          {
          unsigned char j;
          while(x--)
          {
          for(j=0;j<125;j++)
          {;}
          }
          }
          /***************顯示子程序**********************/
          void display(unsigned char bai,unsigned char shi,unsigned char ge)
          {
          //P3=dispbitcode[5];
          //P2=dispcode[11];
          P2=dispbitcode[1];
          P0=dispcode[bai]; //顯示佰位
          delay(5);
          //P3=dispbitcode[5];
          //P2=dispcode[11];
          P2=dispbitcode[2];
          P0=dispcode[shi]; //顯示十位
          delay(5);
          //P3=dispbitcode[5];
          //P2=dispcode[11];
          P2=dispbitcode[3];
          P0=dispcode[ge]; //顯示個(gè)位
          delay(5);
          }
          void main(void)
          {
          unsigned char c;
          ADDA=0;
          ADDB=0;
          ADDC=0; //選 0通道

          本文引用地址:http://cafeforensic.com/article/201611/315529.htm

          while(1)
          {
          ST=0;
          ST=1; //啟動(dòng)AD轉(zhuǎn)換
          _nop_(); //程序空操作一次,即延時(shí)一下;
          ST=0;
          delay(1); // 延時(shí)等待轉(zhuǎn)換結(jié)束
          OE =1; // 輸出轉(zhuǎn)換得到的數(shù)據(jù)

          c=P1; // 記下得到的數(shù)據(jù)
          OE = 0;
          a=c/100; //送去顯示
          b=c%100/10;
          c=c%100%10;
          display(a,b,c);
          }
          }



          關(guān)鍵詞: AD8008AD轉(zhuǎn)

          評(píng)論


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

          關(guān)閉