<meter id="pryje"><nav id="pryje"><delect id="pryje"></delect></nav></meter>
          <label id="pryje"></label>

          新聞中心

          51單片機(jī)秒表C程序

          作者: 時(shí)間:2016-12-02 來源:網(wǎng)絡(luò) 收藏
          本程序所用的原理圖下載:點(diǎn)這里,單片機(jī)芯片使用的stc89c52;電路找到相應(yīng)部分即可.這是一整個(gè)單片機(jī)開發(fā)板的電路圖其他的忽略.

          本程序的keil工程下載:http://www.51hei.com/f/miaobiao.rar 以下是通過測(cè)試的源代碼:

          本文引用地址:http://www.ex-cimer.com/article/201612/324640.htm

          /*
          *功能:用定時(shí)器0實(shí)現(xiàn)秒表,實(shí)現(xiàn)60秒定時(shí),精確度為1毫秒
          * 利用key1獨(dú)立按鍵實(shí)現(xiàn)定時(shí)器的啟動(dòng)和停止,
          * 利用key2獨(dú)立按鍵實(shí)現(xiàn)秒表的清零;
          *日期:2013-03-24
          *作者:徐冉
          *注意事項(xiàng):若打開兩個(gè)定時(shí)器時(shí),必須使用兩個(gè)定時(shí)器,
          * 否則兩個(gè)定時(shí)器都不工作!??!
          **/
          /**********stc89C52-RC 51hei單片機(jī)實(shí)驗(yàn)板**********/
          /**********51hei-5開發(fā)板**********/
          #include
          typedef unsigned int uint;
          typedef unsigned char uchar;
          sbit wela = P2^7;
          sbit dula = P2^6;
          sbit key1 = P3^4;
          sbit key2 = P3^5;
          sbit FM = P2^3;//蜂鳴器
          uchar code table[] = {
          0x3F, //"0"
          0x06, //"1"
          0x5B, //"2"
          0x4F, //"3"
          0x66, //"4"
          0x6D, //"5"
          0x7D, //"6"
          0x07, //"7"
          0x7F, //"8"
          0x6F, //"9"
          0x77, //"A"
          0x7C, //"B"
          0x39, //"C"
          0x5E, //"D"
          0x79, //"E"
          0x71, //"F"
          0x76, //"H"
          0x38, //"L"
          0x37, //"n"
          0x3E, //"u"
          0x73, //"P"
          0x5C, //"o"
          0x40, //"-"
          0x00, //熄滅
          0x40 //自定義
          };
          uint counter, num_h, num_m;
          void delay(uint xms);
          void display_h(uint num_h);
          void init();
          void display_m(uint num_m);
          void keyscan_D();
          void keyscan_Q();
          //主函數(shù)
          void main()
          {
          init();
          while(1)
          {
          dula = 1;
          P0 = table[22];
          dula = 0;
          P0 = 0xff;
          wela = 1;
          P0 = 0xfb;
          wela = 0;
          keyscan_D();
          keyscan_Q();
          display_h(num_h);
          display_m(num_m);
          }
          }
          //定時(shí)器0初始化函數(shù)
          void init()
          {

          TMOD = 0x01;
          TH0 = 0xFC;
          TL0 = 0x67;
          TR0 = 1;
          EA = 1;
          ET0 = 1;
          }
          //毫秒位顯示子函數(shù)
          void display_h(uint num_h)
          {
          uchar bai,shi,ge;
          bai = num_h / 100 % 10;
          shi = num_h / 10 % 10;
          ge = num_h % 10;
          dula = 1;
          P0 = table[bai];
          dula = 0;
          P0 = 0xff;
          wela = 1;
          P0 = 0xf7;
          wela = 0;
          P0 = 0x00;
          delay(1);
          dula = 1;
          P0 = table[shi];
          dula = 0;
          P0 = 0xff;
          wela = 1;
          P0 = 0xef;
          wela = 0;
          P0 = 0x00;
          delay(1);

          dula = 1;
          P0 = table[ge];
          dula = 0;
          P0 = 0xff;
          wela = 1;
          P0 = 0xdf;
          wela = 0;
          P0 = 0x00;
          delay(1);
          }
          //秒位顯示子函數(shù)
          void display_m(uint num_m)
          {
          uchar shi_, ge_;
          shi_ = num_m / 10 % 10;
          ge_ = num_m % 10;
          dula = 1;
          P0 = table[shi_];
          dula = 0;
          P0 = 0xff;
          wela = 1;
          P0 = 0xfe;
          wela = 0;
          P0 = 0x00;
          delay(1);
          dula = 1;
          P0 = table[ge_];
          dula = 0;
          P0 = 0xff;
          wela = 1;
          P0 = 0xfd;
          wela = 0;
          P0 = 0x00;
          delay(1);
          }
          //延時(shí)子函數(shù)
          void delay(uint xms)
          {
          uint i, j;
          for(i = xms; i > 0; i--)
          for(j = 125; j > 0; j--);
          }
          //獨(dú)立按鍵1檢測(cè)子函數(shù) ,開啟和關(guān)閉
          void keyscan_D()
          {
          if(key1 == 0)
          {
          delay(10);
          if(key1 == 0)
          {
          TR0 = ~TR0;
          FM = 0;
          while(!key1);
          FM = 1;
          }
          }
          }
          //獨(dú)立按鍵2檢測(cè)子函數(shù),清零
          void keyscan_Q()
          {
          if(key2 == 0)
          {
          delay(10);
          if(key2 == 0)
          {
          counter = 0;
          num_h = 0;
          num_m = 0;
          FM = 0;
          while(!key2);
          FM = 1;
          }
          }
          }
          //定時(shí)器0中斷子程序
          void int_time0() interrupt 1
          {
          TH0 = 0xFC;
          TL0 = 0x67;
          counter++;
          if(counter == 1)
          {
          counter = 0;
          num_h++; //毫秒自增
          if(num_h == 1000)
          {
          num_h = 0;
          num_m++; //秒自增
          if(num_m == 60)
          {
          num_m = 0;
          }
          }
          }
          }



          關(guān)鍵詞: 51單片機(jī)秒表C程

          評(píng)論


          技術(shù)專區(qū)

          關(guān)閉
          看屁屁www成人影院,亚洲人妻成人图片,亚洲精品成人午夜在线,日韩在线 欧美成人 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();