找回密碼
 立即注冊(cè)

QQ登錄

只需一步,快速開始

搜索
查看: 12355|回復(fù): 26
打印 上一主題 下一主題
收起左側(cè)

剛學(xué)單片機(jī)DIY個(gè)12864紅外遙控時(shí)鐘萬(wàn)年歷

  [復(fù)制鏈接]
跳轉(zhuǎn)到指定樓層
#
剛學(xué)單片機(jī)DIY個(gè)12864紅外遙控時(shí)鐘萬(wàn)年歷
包含 單片機(jī)源代碼和燒錄固件  AD9原理圖 PCB圖


Altium Designer畫的原理圖和PCB圖如下:(51hei附件中可下載工程文件)




單片機(jī)源程序如下:
  1. /*---------------------------------------------------------------------------
  2.         李春林的智能時(shí)鐘程序
  3.         單 片 機(jī):STC89C52RC
  4.         晶    振:11.0592MHz
  5.         時(shí)鐘芯片:DS1302
  6.         液 晶 屏:12864-ST7920
  7.         功能描述: 大數(shù)字顯示時(shí)間;能顯示農(nóng)歷、溫度和設(shè)置鬧鈴;有整點(diǎn)報(bào)時(shí)功能
  8.                           紅外遙控和按鍵都能設(shè)置時(shí)間和鬧鐘
  9.         說(shuō)          明:LCD12864使用并口連接方式,PSB、RST接高電平
  10.         修改日志:無(wú)

  11. ------------------------------------------------------------------------------*/

  12. /*-------------------------------頭文件---------------------------------------*/
  13. #include <reg52.h>
  14. #include <intrins.h>
  15. #include "LCD12864.h"
  16. #include "DS1302.h"
  17. #include "DS18B20.h"
  18. #include "nongli.h"
  19. #include "displaytime.h"
  20. #include "zt.h"
  21. #include "bell.h"
  22. #include "HW.H"
  23. #include "delay.h"

  24. #define uint  unsigned int
  25. #define uchar unsigned char

  26. /*--------------------定義按鍵-----------------------------------------------*/
  27. sbit K1  = P1^0; //K1-設(shè)置
  28. sbit K2  = P1^1; //K2-確認(rèn)、返回
  29. sbit K3  = P1^2; //K3-加
  30. sbit K4  = P1^3; //K4-減
  31. //sbit K5  = P1^4; //按鍵K5-鬧鐘的打開與關(guān)閉 在"hw.h"中定義

  32. /*---------------------函數(shù)聲明------------------------------*/             
  33. void ds_w0(void);
  34. void ds_w(void);
  35. void Conver_week(bit c,uchar year,uchar month,uchar day);
  36. /*-----------------------------定義全局變量------------------------------*/
  37. bit  w=0;    //調(diào)時(shí)標(biāo)志位

  38. unsigned char yy,mo,dd,xq,hh,mm,ss,month_moon,day_moon,week,tiangan,dizhi,moontemp1,moontemp2;//定義時(shí)間映射全局變量(專用寄存器)
  39. signed char address,item,item0,max,mini;
  40. unsigned char clk_ala[2]={0x00,0x00};//鬧鐘數(shù)據(jù)存放初,始值為00:00
  41. unsigned char hour,minute,time;//用于鬧鈴的設(shè)置



  42. /*-----------------------------日期、時(shí)間設(shè)置函數(shù)-----------------------------*/

  43. void tiaozheng(void){
  44.         yy = read_clock(0x8d);//調(diào)用1302時(shí)鐘數(shù)據(jù)中的年數(shù)據(jù),從地址0x8d中
  45.         mo = read_clock(0x89);//調(diào)用1302時(shí)鐘數(shù)據(jù)中的月數(shù)據(jù),從地址0x89中
  46.         dd = read_clock(0x87);//從1302芯片中讀取日數(shù)據(jù),從地址0x87中
  47.         week = read_clock(0x8b);//從1302芯片中讀取星期數(shù)據(jù),從地址0x8b中
  48.         //----------------------------------
  49.         lcm_w_test(0,0x80);
  50.         lcm_w_word("20");//顯示內(nèi)容字符20
  51.         lcm_w_test(1,(yy/16)+0x30);//函數(shù)參數(shù)1,代表本行寫數(shù)據(jù),YY/16+0X30得出年十位數(shù)字的顯示碼地址,送顯示       
  52.         lcm_w_test(1,yy%16+0x30);//函數(shù)
  53.         lcm_w_word("年");
  54.         //----------------------------------
  55.         lcm_w_test(1,(mo/16)+0x30);
  56.         lcm_w_test(1,mo%16+0x30);//與16取余數(shù),得到月份的個(gè)位數(shù),加0x30得到該數(shù)字的液晶內(nèi)定顯示碼送顯示
  57.         lcm_w_word("月");//調(diào)用字符顯示函數(shù),顯示文字 月
  58.         //----------------------------------
  59. /*
  60.         lcm_w_test(0,0x88);//第一個(gè)參數(shù)0,表示本行寫入LCM的是指令,指定顯示位置88H(第三行左端)
  61.         lcm_w_word("星期");//調(diào)用字符顯示函數(shù),顯示文字 星期
  62.         lcm_w_test(1,mo%16+0x30);//與16取余數(shù),得到月份的個(gè)位數(shù),加0x30得到該數(shù)字的液晶內(nèi)定顯示碼送顯示
  63. */
  64.         //----------------------------------
  65.         lcm_w_test(1,(dd/16)+0x30);
  66.         lcm_w_test(1,dd%16+0x30);//第一個(gè)1參數(shù),表示本行寫數(shù)據(jù),日數(shù)據(jù)與16取余得個(gè)位數(shù),加0x30得到顯示碼
  67.         lcm_w_word("日");//顯示字符 日
  68.         //----------------------------------
  69.         if(read_clock(0x85) != hh){//如果程序中的小時(shí)與1302芯片中的不同,
  70.                 hh = read_clock(0x85);//刷新程序中的小時(shí)數(shù)據(jù)
  71.         }
  72.         lcm_w_test(0,0x91);//第一個(gè)參數(shù)0,表示本行寫入LCM的是指令,指定顯示位置88H(第三行左端)
  73.         lcm_w_test(1,(hh/16)+0x30);//顯示十位
  74.         lcm_w_test(1,hh%16+0x30);//顯示個(gè)位
  75.         lcm_w_word("時(shí)");
  76.         //----------------------------------
  77.         if(read_clock(0x83) != mm){//如果1302芯片中的分鐘數(shù)據(jù)與程序中的分鐘變量不相等               
  78.                 mm = read_clock(0x83);//刷新程序中的分鐘數(shù)據(jù)
  79.         }
  80.         lcm_w_test(1,(mm/16)+0x30);//向液晶寫數(shù)據(jù),顯示分鐘的十位數(shù)
  81.         lcm_w_test(1,mm%16+0x30);//向液晶寫數(shù)據(jù),顯示分鐘的個(gè)位數(shù)
  82.         lcm_w_word("分");
  83.         //----------------------------------
  84.         if(read_clock(0x81) != ss){//如果1302芯片中的分鐘數(shù)據(jù)與程序中的秒鐘變量不相等(0x81為讀秒數(shù)據(jù)0x80為寫秒數(shù)據(jù))               
  85.                 ss = read_clock(0x81);//刷新程序中的秒鐘數(shù)據(jù)
  86.         }
  87.         lcm_w_test(1,(ss/16)+0x30);//向液晶寫數(shù)據(jù),顯示分鐘的十位數(shù)
  88.         lcm_w_test(1,ss%16+0x30);//向液晶寫數(shù)據(jù),顯示分鐘的個(gè)位數(shù)
  89.         lcm_w_word("秒");

  90. //////////////////////////////////////////////////////////////////////
  91.         //=========顯示鬧鐘的設(shè)置時(shí)間===================       
  92.        
  93.         hour=clk_ala[0];        //取出上一次的鬧鐘小時(shí)值
  94.         minute=clk_ala[1];         //取出上一次的鬧鐘分鐘值
  95.        
  96.         lcm_w_test(0,0x88);
  97.         lcm_w_word("鬧鐘---");
  98.         //----------------------------       
  99.         lcm_w_test(1,(hour/10)+0x30);//顯示小時(shí)十位
  100.         lcm_w_test(1,(hour%10)+0x30);//顯示小時(shí)個(gè)位
  101.         //----------------------------
  102.           lcm_w_word(":");
  103.         //----------------------------
  104.         lcm_w_test(1,(minute/10)+0x30);//顯示分鐘的十位
  105.         lcm_w_test(1,(minute%10)+0x30);//顯示分鐘的個(gè)位
  106.         //----------------------------
  107.         lcm_w_word("----");


  108. /////////////////////////////////////////////////////////////////////////

  109. }
  110. /*****************************************************************************/
  111. //被調(diào)數(shù)據(jù)加一或減一,并檢查數(shù)據(jù)范圍,寫入1302指定地址保存
  112. void ds_w(void)
  113. {
  114.         item0=time;
  115.         item=((read_clock(address+1))/16)*10 + (read_clock(address+1))%16;//時(shí)間的調(diào)整
  116.         if(K3 == 0||key_add==1){//如果按動(dòng)上調(diào)鍵
  117.          item++;//數(shù)加 1  
  118.         }
  119.         if(K4 == 0||key_minish==1){//如果按動(dòng)下調(diào)鍵
  120.            item--;//數(shù)減 1
  121.         }
  122.         if(item>max)  item=mini;//查看數(shù)值是否在有效范圍之內(nèi)   
  123.         if(item<mini) item=max;//如果數(shù)值小于最小值,則自動(dòng)等于最大值           
  124.         write_clock(0x8e,0x00);//允許寫1302芯片操作
  125.         write_clock(address,(item/10)*16+item%10);//轉(zhuǎn)換成16進(jìn)制寫入1302
  126.         write_clock(0x8e,0x80);//寫保護(hù),禁止寫操作
  127. }

  128. /********************************************************************/
  129. //===============鬧鐘時(shí)間的加減設(shè)置======================
  130. void ds_w0(void)
  131. {
  132.   item0=time;

  133.   if(K3 == 0||key_add==1){//如果按動(dòng)上調(diào)鍵
  134.         item0++;//數(shù)加 1
  135.         }
  136.   if(K4 == 0||key_minish==1){//如果按動(dòng)下調(diào)鍵
  137.         item0--;//數(shù)減 1
  138.         }
  139.   if(item0>max) item0=mini;//查看數(shù)值是否在有效范圍之內(nèi)
  140.   if(item0<mini)item0=max;//如果數(shù)值小于最小值,則自動(dòng)等于最大值
  141.   time=item0;//調(diào)整后的時(shí)間重新賦值給time(time為hour或minute),這步很重要,沒有將無(wú)法更新鬧鐘數(shù)據(jù)
  142. }


  143. /**********************************************************************************************************/
  144. //調(diào)整時(shí)間子函數(shù),設(shè)置鍵、數(shù)據(jù)范圍、上調(diào)加一,下調(diào)減一功能。
  145. void Set_time(unsigned char sel){ //根據(jù)選擇調(diào)整的相應(yīng)項(xiàng)目加1并寫入DS1302,函數(shù)參數(shù)是按動(dòng)設(shè)置鍵的次數(shù)
  146.   
  147.         write_com(0x30); write_com(0x06);

  148.         lcm_w_test(0,0x98);//第一參數(shù)0表示本行寫入指令,指定下面行的 調(diào)整 顯示起始位置為9AH
  149.         lcm_w_word(">>調(diào)整>>    <<<<");//調(diào)用字符顯示函數(shù),顯示 調(diào)整字樣
  150.   
  151. /*        if(sel==8)  {lcm_w_word("星期");address=0x8a; max=7;mini=1;          
  152.      tiaozheng();
  153.      ds_w();
  154.      tiaozheng();
  155.           }
  156. */
  157. //================================================================
  158.         lcm_w_test(0,0x9c);
  159.         if(sel==7)  {lcm_w_word("鬧鐘分"); time=minute;max=59;mini=0;        
  160.          tiaozheng();//顯示調(diào)整前的內(nèi)容
  161.      ds_w0();//設(shè)置鬧鐘
  162.          clk_ala[1]=time;//把更新后的分鐘數(shù)據(jù)重新保存
  163.      tiaozheng();//顯示調(diào)整后的內(nèi)容
  164.           }//按動(dòng)8次顯示 調(diào)整鬧鐘的分鐘部分
  165.         if(sel==6)  {lcm_w_word("鬧鐘時(shí)");time=hour; max=23;mini=0;
  166.      tiaozheng();
  167.      ds_w0();
  168.          clk_ala[0]=time;//把更新后的小時(shí)數(shù)據(jù)重新保存
  169.      tiaozheng();
  170.           }//按動(dòng)7次顯示 調(diào)整鬧鐘的小時(shí)部分
  171. //================================================================

  172.         if(sel==5)  {lcm_w_word("秒鐘");address=0x80; max=59;mini=0;          
  173.         tiaozheng();  //調(diào)用日期、時(shí)間調(diào)整函數(shù)
  174.            ds_w();                  //被調(diào)數(shù)據(jù)加一或減一函數(shù)
  175.            tiaozheng();
  176.    
  177.         }        //秒6,按動(dòng)6次顯示 調(diào)整秒鐘   
  178.                 //并指定秒鐘數(shù)據(jù)寫入1302芯片的寫入地址是0x80,秒鐘數(shù)據(jù)的最大值是59,最小值是0

  179.         if(sel==4)  {lcm_w_word("分鐘");address=0x82; max=59;mini=0;
  180.            tiaozheng();
  181.            ds_w();
  182.            tiaozheng();
  183.   
  184.         }        //分鐘5,按動(dòng)5次顯示 調(diào)整分鐘
  185.                 //并指定分鐘數(shù)據(jù)寫入1302芯片的地址是0x82,分鐘數(shù)據(jù)的最大值是59,最小值是0

  186.         if(sel==3)  {lcm_w_word("小時(shí)");address=0x84; max=23;mini=0;
  187.   
  188.             tiaozheng();
  189.            ds_w();
  190.            tiaozheng();
  191.   
  192.         }        //小時(shí)4,按動(dòng)4次顯示 調(diào)整小時(shí)
  193.                 //規(guī)定小時(shí)數(shù)據(jù)寫入1302芯片的位置是0x84,小時(shí)數(shù)據(jù)最大值23,最小值是0
  194.   

  195.         if(sel==2)  {lcm_w_word("日期");address=0x86;
  196.                 mo = read_clock(0x89);//讀月數(shù)據(jù)
  197.                 moontemp1=mo/16;
  198.                 moontemp2=mo%16;
  199.                 mo=moontemp1*10+moontemp2;//轉(zhuǎn)換成10進(jìn)制月份數(shù)據(jù)

  200.       yy = read_clock(0x8d);//讀年數(shù)據(jù)
  201.       moontemp1=yy/16;
  202.                 moontemp2=yy%16;
  203.                 yy=moontemp1*10+moontemp2;//轉(zhuǎn)換成10進(jìn)制年份數(shù)據(jù)

  204.       if(mo==2&&yy%4!=0){max=28;mini=1;}//平年2月28天
  205.                 if(mo==2&&yy%4==0){max=29;mini=1;}//閏年2月29天
  206.                 if(mo==1||mo==3||mo==5||mo==7||mo==8||mo==10||mo==12){max=31;mini=1;}//31天的月份
  207.                 if(mo==4||mo==6||mo==9||mo==11){max=30;mini=1;}//30天的月份
  208.                 tiaozheng();
  209.                 ds_w();
  210.                 tiaozheng(); //調(diào)用日期、時(shí)間調(diào)整函數(shù)

  211.   }        //日3,按動(dòng)3次顯示 調(diào)整日期
  212.                 //規(guī)定日期數(shù)據(jù)寫入1302的位置地址是0x86,日期最大值31,最小值是1



  213.   if(sel==1)  {lcm_w_word("月份");address=0x88; max=12;mini=1;
  214.      tiaozheng();
  215.      ds_w();
  216.      tiaozheng();
  217.   
  218.    }        //月2,按動(dòng)2次顯示 調(diào)整月份
  219.                 //規(guī)定月份寫入1302的位置地址是0x88,月份最大值12,最小值1


  220.   if(sel==0)  {lcm_w_word("年份");address=0x8c; max=99; mini=0;
  221.          tiaozheng();
  222.      ds_w();                //被調(diào)數(shù)據(jù)加一或減一函數(shù)
  223.      tiaozheng();        //調(diào)用日期、時(shí)間調(diào)整函數(shù)

  224.    }        //年1,按動(dòng)1次顯示 調(diào)整年份,
  225.                 //規(guī)定年份寫入1302的地址是0x8c,年份的最大值99,最小值0

  226. }

  227. /*********************************************************************
  228. **********************************************************************
  229. **************             主函數(shù)                                  ****************
  230. **********************************************************************
  231. /********************************************************************/
  232. void main()
  233. {       
  234.         unsigned char e=0,f=0,tmp,i;                     

  235.     IE = 0x81;    //允許總中斷中斷,使能 INT0 外部中斷
  236.     TCON = 0x01;  //觸發(fā)方式為脈沖負(fù)邊沿觸發(fā)   
  237.     IRIN=1;       //IO口初始化
  238.     BEEP=1;
  239.         K1=1;K2=1;K3=1;K4=1;
  240.        
  241.        
  242.         Init_1302();                //時(shí)鐘芯片初始化
  243.         lcm_init();                        //液晶初始化
  244.         welcome0();  //調(diào)用歡迎信息1
  245.         DelayM(2000);//延時(shí)
  246.         //welcome();DelayM(1000);  //調(diào)用歡迎信息2                
  247.         lcm_clr();            //清屏
  248.         Clean_12864_GDRAM();         //清屏
  249.         while(1)
  250.         {


  251.                 if (w == 0)                  //正常走時(shí)
  252.                 {
  253.                         displaydate();         //顯示日期
  254.                         displaynl();         //顯示農(nóng)歷
  255.                         displaytime();         //顯示時(shí)間
  256.                         read_temp();         //讀取溫度
  257.                         ds1820disp();          //顯示溫度
  258.                         displayxq();         //顯示星期
  259.                                
  260.                 //=================以下是鬧鐘的相關(guān)處理===================
  261.                        
  262.                         if(ala_flag==1){//鬧鐘標(biāo)志位               
  263.                         set1616pic(6,1,0,2);} //顯示"鬧鐘圖標(biāo)"               
  264.                     else{                                                                               
  265.                         set1616pic(6,1,0,3);}//關(guān)閉"鬧鐘圖標(biāo)"顯示

  266.                         //----------------------------------------
  267.                         tmp=read_clock(0x85);//取出1302小時(shí)
  268.                         i = tmp/16;
  269.                         tmp = tmp&0x0f;
  270.                         tmp = tmp + i*10;
  271.                         if(clk_ala[0]==tmp)//與鬧鐘設(shè)定的小時(shí)值相同
  272.                                 {
  273.                                 tmp=read_clock(0x83);//取出1302分鐘
  274.                                 i = tmp/16;
  275.                                 tmp = tmp&0x0f;
  276.                                 tmp = tmp + i*10;
  277.                                         if(clk_ala[1]==tmp)//與鬧鐘設(shè)定的分鐘值相同
  278.                                           {
  279.                                                 if(ala_flag==1)//鬧鐘打開
  280.                                                   {
  281.                                                         alarmbeep();//鬧鈴聲響1分鐘后自動(dòng)關(guān)閉,
  282.                                                         DelayM(200);//控制鬧鐘響的間隔即頻率
  283.                                                    }
  284.                                                 else BEEP=1;//關(guān)閉蜂鳴器
  285.                                            }
  286.                                          else BEEP=1;//關(guān)閉蜂鳴器
  287.                                 }
  288.                         //==============鬧鐘處理結(jié)束=======================
  289.                 }       
  290.                 else {} //========否則啟動(dòng)調(diào)時(shí)=========================
  291.          
  292.      
  293. /*---------------按鍵及紅外遙控設(shè)置時(shí)間------------------------------*/               
  294.                 if (K1 == 0||key_manue==1)         
  295.                 {                 
  296.                        
  297.                         DelayM(8);                       //按鍵消抖
  298. /*當(dāng)是調(diào)時(shí)狀態(tài) 本鍵用于調(diào)整下一項(xiàng)---------------------------------------------------*/               
  299.                         if((K1 == 0 && w == 1)||(key_manue==1&&w==1))      //
  300.                         {
  301.                                        
  302.                                 e++;
  303.                                 if (e >= 8 ) {e = 0;}
  304.                              while(! K1 );            //等待鍵松開
  305.                           key_manue=0;
  306.                                 Set_time(e); beep();          //調(diào)整                               
  307.                         }
  308. /*當(dāng)是正常狀態(tài)時(shí)就進(jìn)入調(diào)時(shí)狀態(tài)---------------------------------------------------*/               
  309.                         if((K1 == 0 && w == 0)||(key_manue==1&&w==0))  //
  310.                         {       
  311.                                 key_manue=0;
  312.                                 lcm_clr();            
  313.                                 Clean_12864_GDRAM();   //清屏
  314.                                 w=1;                       //進(jìn)入調(diào)時(shí)
  315.                                 Set_time(e);beep();
  316.                         }
  317.                            while(K1 == 0);            //等待鍵松開
  318.                 }
  319. /*當(dāng)在調(diào)時(shí)狀態(tài)時(shí)就退出調(diào)時(shí)---------------------------------------------------*/               
  320.                 if (K2 == 0||key_ok==1)                   //
  321.                 {        beep();
  322.                         DelayM(8);
  323.                         if((K2 == 0 && w == 1)||(key_ok==1&&w==1))
  324.                         {                       
  325.                                 w = 0;                       //退出調(diào)時(shí)
  326.                                 e = 0;                           //"下一項(xiàng)"計(jì)數(shù)器清0                                                               
  327.                         }
  328.                         if((K2 == 0 && w == 0)||(key_ok==1&&w==0))
  329.                         {
  330.                                 lcm_clr(); Clean_12864_GDRAM();
  331.                                 write_com(0x30); write_com(0x06);
  332.                                 welcome();       
  333.                                 while(K2 == 0); //按下K2是顯示歡迎信息
  334.                                 DelayM(500);key_ok=0;//紅外"OK"按鍵按下時(shí)顯示0.5秒鐘的歡迎界面2                                 
  335.                         }
  336.                         lcm_clr(); Clean_12864_GDRAM();
  337. ……………………

  338. …………限于本文篇幅 余下代碼請(qǐng)從51黑下載附件…………
復(fù)制代碼

所有資料51hei提供下載:
萬(wàn)年歷01ok.zip (841.17 KB, 下載次數(shù): 289)




評(píng)分

參與人數(shù) 1黑幣 +100 收起 理由
admin + 100 共享資料的黑幣獎(jiǎng)勵(lì)!

查看全部評(píng)分

分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏15 分享淘帖 頂 踩1
回復(fù)

使用道具 舉報(bào)

26#
ID:149988 發(fā)表于 2022-2-19 08:34 | 只看該作者
您好,程序中有計(jì)算農(nóng)歷部分嗎?謝謝
回復(fù)

使用道具 舉報(bào)

25#
ID:59830 發(fā)表于 2022-2-12 20:32 | 只看該作者
看見顯示UI圖片,覺得挺好看呢. 看一下代碼.
回復(fù)

使用道具 舉報(bào)

24#
ID:242298 發(fā)表于 2022-2-12 06:28 | 只看該作者
溫度顯示不動(dòng)!
求解答@
回復(fù)

使用道具 舉報(bào)

23#
ID:171297 發(fā)表于 2021-11-28 18:54 | 只看該作者
溫度顯示不動(dòng)!
回復(fù)

使用道具 舉報(bào)

22#
ID:768919 發(fā)表于 2020-6-3 22:18 | 只看該作者
正需要這個(gè)
回復(fù)

使用道具 舉報(bào)

21#
ID:641703 發(fā)表于 2020-6-3 16:03 | 只看該作者

感謝分享;正需要這個(gè)
回復(fù)

使用道具 舉報(bào)

20#
ID:620287 發(fā)表于 2019-12-31 07:49 來(lái)自手機(jī) | 只看該作者
Mahdi_51 發(fā)表于 2019-4-10 12:06
怎么才能下載呢,金幣不足好難受啊

金幣可以通過(guò)你手上現(xiàn)有的單片機(jī)類的資料,在此網(wǎng)站共享出來(lái)就可以獲取
回復(fù)

使用道具 舉報(bào)

19#
ID:111376 發(fā)表于 2019-12-30 20:41 | 只看該作者
測(cè)試效果很好,太好了,感謝分享
回復(fù)

使用道具 舉報(bào)

18#
ID:343165 發(fā)表于 2019-6-2 23:04 | 只看該作者
這個(gè)按鍵是什么型號(hào)的?
回復(fù)

使用道具 舉報(bào)

17#
ID:544558 發(fā)表于 2019-6-2 21:03 | 只看該作者
請(qǐng)問(wèn)KEY的封裝是什么呀
回復(fù)

使用道具 舉報(bào)

16#
ID:551975 發(fā)表于 2019-6-2 13:44 | 只看該作者
可以給封裝嗎
回復(fù)

使用道具 舉報(bào)

15#
ID:323741 發(fā)表于 2019-5-30 16:06 | 只看該作者
大字體怎么顯示?求教
回復(fù)

使用道具 舉報(bào)

14#
ID:543653 發(fā)表于 2019-5-29 20:28 | 只看該作者
樓主剛學(xué)都做這么好啊,真是厲害!
回復(fù)

使用道具 舉報(bào)

13#
ID:550025 發(fā)表于 2019-5-29 11:38 | 只看該作者
感謝分享;正需要這個(gè)
回復(fù)

使用道具 舉報(bào)

12#
ID:404374 發(fā)表于 2019-5-9 20:13 | 只看該作者
xsj1877578806 發(fā)表于 2018-7-29 10:20
很好,很實(shí)用,收藏了

鬧鐘可以用嗎
回復(fù)

使用道具 舉報(bào)

11#
ID:404374 發(fā)表于 2019-5-9 20:12 | 只看該作者
鬧鐘不能用是為什么那個(gè)大佬知道?
回復(fù)

使用道具 舉報(bào)

10#
ID:508635 發(fā)表于 2019-4-10 12:06 | 只看該作者
怎么才能下載呢,金幣不足好難受啊
回復(fù)

使用道具 舉報(bào)

9#
ID:404374 發(fā)表于 2019-4-4 08:54 | 只看該作者
下載了,時(shí)間顯示不出來(lái)啊
回復(fù)

使用道具 舉報(bào)

8#
ID:372098 發(fā)表于 2019-3-25 12:00 | 只看該作者
好東西,剛好想做一個(gè)
回復(fù)

使用道具 舉報(bào)

7#
ID:324871 發(fā)表于 2018-8-10 11:06 | 只看該作者
對(duì)這個(gè)12864顯示大字體不太懂,想?yún)⒖家幌隆?/td>
回復(fù)

使用道具 舉報(bào)

6#
ID:363686 發(fā)表于 2018-8-10 06:58 | 只看該作者
學(xué)習(xí)貼,收藏了,謝謝分享&#128591;
回復(fù)

使用道具 舉報(bào)

5#
ID:380389 發(fā)表于 2018-7-31 14:38 來(lái)自手機(jī) | 只看該作者
感謝分享,字體好看
回復(fù)

使用道具 舉報(bào)

地板
ID:367948 發(fā)表于 2018-7-31 09:22 | 只看該作者
感謝樓主分享資料,正在學(xué)習(xí)
回復(fù)

使用道具 舉報(bào)

板凳
ID:380389 發(fā)表于 2018-7-29 10:20 來(lái)自手機(jī) | 只看該作者
很好,很實(shí)用,收藏了
回復(fù)

使用道具 舉報(bào)

沙發(fā)
ID:260833 發(fā)表于 2018-6-29 20:07 | 只看該作者
為什么我的老是顯示一會(huì)兒就不顯示
回復(fù)

使用道具 舉報(bào)

樓主
ID:312815 發(fā)表于 2018-6-28 23:26 | 只看該作者
感謝分享;正需要這個(gè)
回復(fù)

使用道具 舉報(bào)

本版積分規(guī)則

手機(jī)版|小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術(shù)交流QQ群281945664

Powered by 單片機(jī)教程網(wǎng)

快速回復(fù) 返回頂部 返回列表