V5.2版萬年歷使用說明 12864萬年歷V5.2版本:多功能菜單、多風(fēng)格主界面,生日、節(jié)日、節(jié)氣、農(nóng)歷時(shí)段多功能提示,鬧鐘、音樂、溫度、屏幕自檢 一、電源電壓4.8V—5.2V,可以直接用電腦USB供電。 二、程序修改說明 1、如果你編譯通不過,就是你用的KEIL庫文件不全,請(qǐng)換個(gè)完整版本的KEIL,本程序是完全編譯通過。 2、本程序由于農(nóng)歷,節(jié)氣等數(shù)據(jù)很占空間,編譯后有19K多,請(qǐng)使用程序存儲(chǔ)器20K以上的51單片機(jī),比如STC89C55、STC89C58,STC89C516,AT89C55,AT89S54,SST89C58等; 3、如果你的漢字顯示不全或亂碼,比如“三“顯示不了,那是你的KEIL沒有打補(bǔ)丁,并不是程序問題。 4、在修改位定義的時(shí)候需要將Soundplay.h文件下的sbit BeepIO = P3^7; sbit KEY_1 = P2^7;一起修改; 5、蜂鳴器請(qǐng)最好使用無源蜂鳴器或小喇叭,這樣音質(zhì)會(huì)很好。 三、生日、節(jié)氣和節(jié)日提示說明
1、本萬年歷的各種提示會(huì)在主界面第四行交替顯示,其中生日和節(jié)氣優(yōu)先顯示。
Altium Designer畫的原理圖和PCB圖如下:(51hei附件中可下載工程文件)
QQ截圖20181230162358.png (51.65 KB, 下載次數(shù): 53)
下載附件
2018-12-30 16:46 上傳
QQ截圖20181230162330.png (185.89 KB, 下載次數(shù): 62)
下載附件
2018-12-30 16:46 上傳
電路原理圖如下:
QQ截圖20181230162655.png (61.3 KB, 下載次數(shù): 62)
下載附件
2018-12-30 16:34 上傳
資料齊全
QQ截圖20181230162529.png (40.62 KB, 下載次數(shù): 65)
下載附件
2018-12-30 16:35 上傳
源代碼 - //頭文件
- #include <AT89X52.h>
- #include <string.h>
- #include <intrins.h>
- #include "SoundPlay.h"//音樂文件
- #define uchar unsigned char
- #define uint unsigned int
- /*****************************************************************************/
- //揚(yáng)聲器定義
- sbit beep = P3^7;//揚(yáng)聲器
- /*****************************************************************************/
- //溫度傳感器定義
- sbit DQ = P2 ^ 0;//ds18B20
- uint tvalue;//溫度值
- uchar tflag,flagdat,t,hh1;//溫度正負(fù)標(biāo)志
- /*****************************************************************************/
- //鍵盤引腳定義
- //sbit KEY_1 = P2^7; //左上,在音樂文件SoundPlay.h中已定義
- sbit KEY_2 = P2^6; //左下
- sbit KEY_3 = P2^5; //右上
- sbit KEY_4 = P2^4; //右下
- /****************************************************************************/
- //定義DS1302時(shí)鐘接口
- sbit clock_clk = P2 ^ 1;//ds1302_clk(時(shí)鐘線)
- sbit clock_dat = P2 ^ 2;//ds1302_dat(數(shù)據(jù)線)
- sbit clock_Rst = P2 ^ 3;//ds1302_Rst(復(fù)位線)
- //定義累加器A中的各位
- sbit a0 = ACC ^ 0;
- sbit a1 = ACC ^ 1;
- sbit a2 = ACC ^ 2;
- sbit a3 = ACC ^ 3;
- sbit a4 = ACC ^ 4;
- sbit a5 = ACC ^ 5;
- sbit a6 = ACC ^ 6;
- sbit a7 = ACC ^ 7;
- /****************************************************************************/
- //定義全局變量
- unsigned char yy,mo,dd,xq,hh,year,year1;//定義時(shí)間映射全局變量(專用寄存器)
- unsigned char shi,ge,sec_temp,min_temp,hour_temp,secl,selx,e=0,hh1,mm1,k,mm,ss,n;
- char n1,n2;
- bit w = 0; //調(diào)時(shí)標(biāo)志位
- static unsigned char menu = 0;//定義靜態(tài)小時(shí)更新用數(shù)據(jù)變量
- static unsigned char keys = 0;//定義靜態(tài)小時(shí)更新用數(shù)據(jù)變量
- static unsigned char timecount = 0;//定義靜態(tài)軟件計(jì)數(shù)器變量
- /****************************************************************************/
- //-----------------------------------------------
- //TS12864并口相關(guān)設(shè)定//
- #define BUSY_FLAG P0_7 //液晶模塊忙標(biāo)志
- #define MPU_RS_CH P1_5 //寄存器選擇輸入
- #define MPU_RW_CH P1_6 //讀寫控制
- #define MPU_ENABLE P1_7 //使能控制
- #define LCD_DATA P0 //液晶數(shù)據(jù)口
- //-----------------------------------------------
- #define LOW 0 //低電平
- #define HIGH 1 //高電平
- #define OFF 0 //邏輯關(guān)
- #define ON 1 //邏輯開
- //-----------------------------------------------
- //液晶模塊指令集定義
- #define cClearDisplay 0x01 //清顯示指令
- #define cEntryModeSet 0x06 //設(shè)置輸入模式
- #define cDisplayOnCtrl 0x0c //設(shè)置開顯控制
- #define cFunctionSetB 0x30 //功能設(shè)定(基本指令)
- #define cFunctionSetE 0x34 //功能設(shè)定(擴(kuò)充指令)
- #define cFuncDrawOn 0x36 //設(shè)置繪圖功能
- //-----------------------------------------------
- uchar xdata lcdPosX, lcdPosY; //X,Y坐標(biāo)
- uchar xdata halfScr, halfLineCnt, basicBlock; //半屏,半屏行數(shù),N*8塊
- //-----------------------------------------------
- //子程序聲明和用法
- bit scanKey1 (void);
- //按鍵1檢測(cè)
- void procKey (void);
- //按鍵處理子程序
- void lcdInit (void);
- //初始化LCD子程序
- void lcdClear (void);
- //清除LCD文本屏幕子程序
- void lcdWriteCommand (uchar Command);
- //寫入控制命令到LCD子程序
- //輸入?yún)?shù):LCD控制指令
- void lcdWriteData (uchar Data);
- //寫入顯示數(shù)據(jù)到LCD子程序
- //輸入?yún)?shù):顯示數(shù)據(jù)
- void checkLcdBusy (void);
- //檢測(cè)LCD忙碌子程序
- void displayPhoto (uchar *bmp, uchar bmpCls);
- //全屏顯示圖形子程序
- //輸入?yún)?shù):*bmp=圖形數(shù)據(jù)
- //bmpCls=清除圖形屏幕選項(xiàng)(OFF為不清屏,即顯示圖形,ON為清屏)
- void convertChar (uchar CX, CY, width);
- //字符反白顯示
- //輸入?yún)?shù):CX=要反白字符的行(0-3)
- //CY=要反白字符的列(0-7)
- //width=要反白字符的長(zhǎng)度(1-16)
- void wrPosition (void);
- //坐標(biāo)寫入子程序
- void dispString (uchar X, Y, speed, uchar *msg);
- //顯示字符串子程序
- //輸入?yún)?shù):X=行(0-3), Y=列(0-7), speed=顯示速度(毫秒), msg=字符數(shù)據(jù)
- void beepBl (void);
- //蜂鳴器響一聲子程序
- void delayMs (uchar ms);
- //延時(shí)(毫秒)子程序
- //輸入?yún)?shù):毫秒數(shù)
- void delaySec (uchar sec);
- //延時(shí)(秒)子程序
- //輸入?yún)?shù):秒數(shù)
- void init_dz();
- void clear_img();
- //===============================================
- //12864液晶驅(qū)動(dòng)
- //===============================================
- void lcdInit (void)
- {
- lcdWriteCommand(cFunctionSetE);
- lcdWriteCommand(cFunctionSetB);
- lcdClear();
- lcdWriteCommand(cEntryModeSet);
- lcdWriteCommand(cDisplayOnCtrl);
- if(k==1){clear_img();lcdClear();
- }
- if(k==0){lcdClear(); clear_img();init_dz();
- }
- }
- //===============================================
- void lcdClear (void)
- {
- lcdWriteCommand(cClearDisplay);
- }
- //===============================================
- void lcdWriteCommand (uchar Command)
- {
- checkLcdBusy();
- MPU_RS_CH = LOW;
- MPU_RW_CH = LOW;
- LCD_DATA = Command;
- MPU_ENABLE = HIGH;
- delayMs(1);
- MPU_ENABLE = LOW;
- }
- //===============================================
- void lcdWriteData (uchar Data)
- {
- checkLcdBusy();
- MPU_RS_CH = HIGH;
- MPU_RW_CH = LOW;
- LCD_DATA = Data;
- MPU_ENABLE = HIGH;
- delayMs(1);
- MPU_ENABLE = LOW;
- }
- //===============================================
- void checkLcdBusy (void)
- {
- LCD_DATA = 0xff;
- MPU_RS_CH = LOW;
- MPU_RW_CH = HIGH;
- MPU_ENABLE = HIGH;
- while (BUSY_FLAG);
- MPU_ENABLE = LOW;
- }
- //===============================================
- void displayPhoto (uchar *bmp, uchar bmpCls)
- {
- lcdPosX = 0x80;
- halfScr = 2;
-
- for (;halfScr != 0; halfScr--)
- {
- lcdPosY = 0x80;
- halfLineCnt = 32;
-
- for (;halfLineCnt != 0; halfLineCnt--)
- {
- basicBlock = 16;
- wrPosition ();
-
- for (; basicBlock != 0; basicBlock--)
- {
- if (bmpCls == OFF)
- {
- lcdWriteData (*bmp++);
- }
- else if (bmpCls == ON)
- {
- lcdWriteData (0x00);
- }
- }
- lcdPosY++;
- }
- lcdPosX = 0x88;
- }
- lcdWriteCommand(cFuncDrawOn);
- lcdWriteCommand(cFunctionSetB);
- }
- //===============================================
- void convertChar (uchar CX, CY, width)
- {
- displayPhoto(OFF,ON);
- lcdPosY = 0x80;
- if (CX == 0)
- {
- CX = 0x80;
- halfLineCnt = 16;
- }
- else if (CX == 1)
- {
- CX = 0x80;
- halfLineCnt = 32;
- }
- else if (CX == 2)
- {
- CX = 0x88;
- halfLineCnt = 16;
- }
- else if (CX == 3)
- {
- CX = 0x88;
- halfLineCnt = 32;
- }
- lcdPosX = CX + CY;
-
- for (; halfLineCnt != 0; halfLineCnt--)
- {
- basicBlock = width;
- wrPosition();
-
- for (;basicBlock != 0; basicBlock--)
- {
- if (halfLineCnt > 16)
- {
- lcdWriteData(0x00);
- }
- else
- {
- lcdWriteData (0xff);
- }
- }
- lcdPosY++;
- }
- lcdWriteCommand(cFuncDrawOn);
- lcdWriteCommand(cFunctionSetB);
- }
- //===============================================
- void wrPosition (void)
- {
- lcdWriteCommand(cFunctionSetE);
- lcdWriteCommand(lcdPosY);
- lcdWriteCommand(lcdPosX);
- lcdWriteCommand(cFunctionSetB);
- }
- //===============================================
- void dispString (uchar X, Y, speed, uchar *msg)
- {
- if (X == 0)
- {
- X = 0x80;
- }
- else if (X == 1)
- {
- X = 0x90;
- }
- else if (X == 2)
- {
- X = 0x88;
- }
- else if (X == 3)
- {
- X = 0x98;
- }
- Y = X + Y;
- lcdWriteCommand(Y);
- while (*msg)
- {
- lcdWriteData(*msg++);
- delayMs(speed);
- }
- }
- //===============================================
- void delayMs (uchar ms)
- {
- uchar i;
- while (--ms)
- {
- for (i = 0; i < 125; i++);
- }
- }
- /********************************************************************************************************
- 清理圖片緩沖區(qū)
- ********************************************************************************************************/
- void clear_img()
- {
- uchar i,j;
- for(i=0;i<32;i++)
- {
- lcdWriteCommand(0x80+i);
- lcdWriteCommand(0x80);
- for(j=0;j<16;j++)
- {
- lcdWriteData(0x00);
- }
- }
- for(i=0;i<32;i++)
- {
- lcdWriteCommand(0x80+i);
- lcdWriteCommand(0x88);
- for(j=0;j<16;j++)
- {
- lcdWriteData(0x00);
- }
- }
- }
- /******************************************************************************/
- uchar code powerOnPhoto []={
- /*-- 一幅圖像 KISS- 正向取模,字節(jié)正序*/
- /*-- 寬度x高度=128x64 --*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x0F,0x0E,0x00,0x00,0x00,0x00,0x19,0xFF,0xFF,0xFF,
- …………
- …………
- …………限于本文篇幅 余下代碼請(qǐng)從51黑下載附件…………
- 0x04,0xAe,0x45, //2095
- 0x4A,0x4e,0xB9, //2096
- 0x0A,0x4d,0x4C, //2097
- 0x0d,0x15,0x41, //2098
- 0x2d,0x92,0xB5, //2099
- };
- ///月份數(shù)據(jù)表
- code uchar day_code1[9]={0x0,0x1f,0x3b,0x5a,0x78,0x97,0xb5,0xd4,0xf3};
- code uint day_code2[3]={0x111,0x130,0x14e};
- /*
- 函數(shù)功能:輸入BCD陽歷數(shù)據(jù),輸出BCD陰歷數(shù)據(jù)(只允許1901-2099年)
- 調(diào)用函數(shù)示例:Conversion(c_sun,year_sun,month_sun,day_sun)
- 如:計(jì)算2004年10月16日Conversion(0,0x4,0x10,0x16);
- c_sun,year_sun,month_sun,day_sun均為BCD數(shù)據(jù),c_sun為世紀(jì)標(biāo)志位,c_sun=0為21世
- 紀(jì),c_sun=1為19世紀(jì)
- 調(diào)用函數(shù)后,原有數(shù)據(jù)不變,讀c_moon,year_moon,month_moon,day_moon得出陰歷BCD數(shù)據(jù)
- */
- bit c_moon;
- data uchar year_moon,month_moon,day_moon,week;
- /*子函數(shù),用于讀取數(shù)據(jù)表中農(nóng)歷月的大月或小月,如果該月為大返回1,為小返回0*/
- bit get_moon_day(uchar month_p,uint table_addr)
- {
- uchar temp;
- switch (month_p)
- {
- case 1:{temp=year_code[table_addr]&0x08;
- if (temp==0)return(0);else return(1);}
- case 2:{temp=year_code[table_addr]&0x04;
- if (temp==0)return(0);else return(1);}
- case 3:{temp=year_code[table_addr]&0x02;
- if (temp==0)return(0);else return(1);}
- case 4:{temp=year_code[table_addr]&0x01;
- if (temp==0)return(0);else return(1);}
- case 5:{temp=year_code[table_addr+1]&0x80;
- if (temp==0) return(0);else return(1);}
- case 6:{temp=year_code[table_addr+1]&0x40;
- if (temp==0)return(0);else return(1);}
- case 7:{temp=year_code[table_addr+1]&0x20;
- if (temp==0)return(0);else return(1);}
- case 8:{temp=year_code[table_addr+1]&0x10;
- if (temp==0)return(0);else return(1);}
- case 9:{temp=year_code[table_addr+1]&0x08;
- if (temp==0)return(0);else return(1);}
- case 10:{temp=year_code[table_addr+1]&0x04;
- if (temp==0)return(0);else return(1);}
- case 11:{temp=year_code[table_addr+1]&0x02;
- if (temp==0)return(0);else return(1);}
- case 12:{temp=year_code[table_addr+1]&0x01;
- if (temp==0)return(0);else return(1);}
- case 13:{temp=year_code[table_addr+2]&0x80;
- if (temp==0)return(0);else return(1);}
- }
- }
- /*
- 函數(shù)功能:輸入BCD陽歷數(shù)據(jù),輸出BCD陰歷數(shù)據(jù)(只允許1901-2099年)
- 調(diào)用函數(shù)示例:Conversion(c_sun,year_sun,month_sun,day_sun)
- 如:計(jì)算2004年10月16日Conversion(0,0x4,0x10,0x16);
- c_sun,year_sun,month_sun,day_sun均為BCD數(shù)據(jù),c_sun為世紀(jì)標(biāo)志位,c_sun=0為21世
- 紀(jì),c_sun=1為19世紀(jì)
- 調(diào)用函數(shù)后,原有數(shù)據(jù)不變,讀c_moon,year_moon,month_moon,day_moon得出陰歷BCD數(shù)據(jù)
- */
- void Conversion(bit c,uchar year,uchar month,uchar day)
- { //c=0 為21世紀(jì),c=1 為19世紀(jì) 輸入輸出數(shù)據(jù)均為BCD數(shù)據(jù)
- uchar temp1,temp2,temp3,month_p;
- uint temp4,table_addr;
- bit flag2,flag_y;
- temp1=year/16; //BCD->hex 先把數(shù)據(jù)轉(zhuǎn)換為十六進(jìn)制
- temp2=year%16;
- year=temp1*10+temp2;
- temp1=month/16;
- temp2=month%16;
- month=temp1*10+temp2;
- temp1=day/16;
- temp2=day%16;
- day=temp1*10+temp2;
- //定位數(shù)據(jù)表地址
- if(c==0)
- {
- table_addr=(year)*0x3;
- }
- //else
- //{
- //table_addr=(year-1)*0x3;
- //}
- //定位數(shù)據(jù)表地址完成
- //取當(dāng)年春節(jié)所在的公歷月份
- temp1=year_code[table_addr+2]&0x60;
- temp1=_cror_(temp1,5);
- //取當(dāng)年春節(jié)所在的公歷月份完成
- //取當(dāng)年春節(jié)所在的公歷日
- temp2=year_code[table_addr+2]&0x1f;
- //取當(dāng)年春節(jié)所在的公歷日完成
- // 計(jì)算當(dāng)年春年離當(dāng)年元旦的天數(shù),春節(jié)只會(huì)在公歷1月或2月
- if(temp1==0x1)
- {
- temp3=temp2-1;
- }
- else
- {
- temp3=temp2+0x1f-1;
- }
- // 計(jì)算當(dāng)年春年離當(dāng)年元旦的天數(shù)完成
- //計(jì)算公歷日離當(dāng)年元旦的天數(shù),為了減少運(yùn)算,用了兩個(gè)表
- //day_code1[9],day_code2[3]
- //如果公歷月在九月或前,天數(shù)會(huì)少于0xff,用表day_code1[9],
- //在九月后,天數(shù)大于0xff,用表day_code2[3]
- //如輸入公歷日為8月10日,則公歷日離元旦天數(shù)為day_code1[8-1]+10-1
- //如輸入公歷日為11月10日,則公歷日離元旦天數(shù)為day_code2[11-10]+10-1
- if (month<10)
- {
- temp4=day_code1[month-1]+day-1;
- }
- else
- {
- temp4=day_code2[month-10]+day-1;
- }
- if ((month>0x2)&&(year%0x4==0))
- { //如果公歷月大于2月并且該年的2月為閏月,天數(shù)加1
- temp4+=1;
- }
- //計(jì)算公歷日離當(dāng)年元旦的天數(shù)完成
- //判斷公歷日在春節(jié)前還是春節(jié)后
- if (temp4>=temp3)
- { //公歷日在春節(jié)后或就是春節(jié)當(dāng)日使用下面代碼進(jìn)行運(yùn)算
- temp4-=temp3;
- month=0x1;
- month_p=0x1; //month_p為月份指向,公歷日在春節(jié)前或就是春節(jié)當(dāng)日month_p指向首月
- flag2=get_moon_day(month_p,table_addr);
- //檢查該農(nóng)歷月為大小還是小月,大月返回1,小月返回0
- flag_y=0;
- if(flag2==0)temp1=0x1d; //小月29天
- else temp1=0x1e; //大小30天
- temp2=year_code[table_addr]&0xf0;
- temp2=_cror_(temp2,4); //從數(shù)據(jù)表中取該年的閏月月份,如為0則該年無閏月
- while(temp4>=temp1)
- {
- temp4-=temp1;
- month_p+=1;
- if(month==temp2)
- {
- flag_y=~flag_y;
- if(flag_y==0)
- month+=1;
- }
- else month+=1;
- flag2=get_moon_day(month_p,table_addr);
- if(flag2==0)temp1=0x1d;
- else temp1=0x1e;
- }
- day=temp4+1;
- }
- else
- { //公歷日在春節(jié)前使用下面代碼進(jìn)行運(yùn)算
- temp3-=temp4;
- if (year==0x0)
- {
- year=0x63;c=1;
- }
- else year-=1;
- table_addr-=0x3;
- month=0xc;
- temp2=year_code[table_addr]&0xf0;
- temp2=_cror_(temp2,4);
- if (temp2==0)
- month_p=0xc;
- else
- month_p=0xd; //
- /*month_p為月份指向,如果當(dāng)年有閏月,一年有十三個(gè)月,月指向13,無閏月指向12*/
- flag_y=0;
- flag2=get_moon_day(month_p,table_addr);
- if(flag2==0)temp1=0x1d;
- else temp1=0x1e;
- while(temp3>temp1)
- {
- temp3-=temp1;
- month_p-=1;
- if(flag_y==0)month-=1;
- if(month==temp2)flag_y=~flag_y;
- flag2=get_moon_day(month_p,table_addr);
- if(flag2==0)temp1=0x1d;
- else temp1=0x1e;
- }
- day=temp1-temp3+1;
- }
- c_moon=c; //HEX->BCD ,運(yùn)算結(jié)束后,把數(shù)據(jù)轉(zhuǎn)換為BCD數(shù)據(jù)
- temp1=year/10;
- temp1=_crol_(temp1,4);
- temp2=year%10;
- year_moon=temp1|temp2;
- temp1=month/10;
- temp1=_crol_(temp1,4);
- temp2=month%10;
- month_moon=temp1|temp2;
- temp1=day/10;
- temp1=_crol_(temp1,4);
- temp2=day%10;
- day_moon=temp1|temp2;
- }
- /*函數(shù)功能:輸入BCD陽歷數(shù)據(jù),輸出BCD星期數(shù)據(jù)(只允許1901-2099年)
- 調(diào)用函數(shù)示例:Conver_week(c_sun,year_sun,month_sun,day_sun)
- 如:計(jì)算2004年10月16日Conversion(0,0x4,0x10,0x16);
- c_sun,year_sun,month_sun,day_sun均為BCD數(shù)據(jù),c_sun為世紀(jì)標(biāo)志位,c_sun=0為21世
- 紀(jì),c_sun=1為19世紀(jì)
- 調(diào)用函數(shù)后,原有數(shù)據(jù)不變,讀week得出陰歷BCD數(shù)據(jù)
- */
- code uchar table_week[12]={0,3,3,6,1,4,6,2,5,0,3,5}; //月修正數(shù)據(jù)表
- /*
- 算法:日期+年份+所過閏年數(shù)+月較正數(shù)之和除7 的余數(shù)就是星期但如果是在
- 閏年又不到3 月份上述之和要減一天再除7
- 星期數(shù)為0
- */
- /*void Conver_week(bit c,uchar year,uchar month,uchar day)
- {//c=0 為21世紀(jì),c=1 為19世紀(jì) 輸入輸出數(shù)據(jù)均為BCD數(shù)據(jù)
- uchar temp1,temp2;
- temp1=year/16; //BCD->hex 先把數(shù)據(jù)轉(zhuǎn)換為十六進(jìn)制
- temp2=year%16;
- year=temp1*10+temp2;
- temp1=month/16;
- temp2=month%16;
- month=temp1*10+temp2;
- temp1=day/16;
- temp2=day%16;
- day=temp1*10+temp2;
- if (c==0){year+=0x64;} //如果為21世紀(jì),年份數(shù)加100
- temp1=year/0x4; //所過閏年數(shù)只算1900年之后的
- temp2=year+temp1;
- temp2=temp2%0x7; //為節(jié)省資源,先進(jìn)行一次取余,避免數(shù)大于0xff,避免使用整型數(shù)據(jù)
- temp2=temp2+day+table_week[month-1];
- if (year%0x4==0&&month<3)temp2-=1;
- week=temp2%0x7;
- }*/
- //test
- uchar c_sun,year_sun,month_sun,day_sun;
- /****************************************************************************************************************************
- 函數(shù)功能: 二十四節(jié)氣數(shù)據(jù)庫
- 入口參數(shù): unsigned char(yy,mo,dd) 對(duì)應(yīng) 年月日
- 出口參數(shù): unsigned char(0-24) 1-24對(duì)應(yīng)二十四節(jié)氣
- 作者 : TOTOP
- 二十四節(jié)氣數(shù)據(jù)庫(1901--2050)
- 數(shù)據(jù)格式說明:
- 如1901年的節(jié)氣為
- 1月 2月 3月 4月 5月 6月 7月 8月 9月 10月 11月 12月
- [ 6,21][ 4,19][ 6,21][ 5,21][ 6,22][ 6,22][ 8,23][ 8,24][ 8,24][ 8,24][ 8,23][ 8,22]
- [ 9, 6][11, 4][ 9, 6][10, 6][ 9, 7][ 9, 7][ 7, 8][ 7, 9][ 7, 9][ 7, 9][ 7, 8][ 7,15]
- 上面第一行數(shù)據(jù)為每月節(jié)氣對(duì)應(yīng)公歷日期,15減去每月第一個(gè)節(jié)氣,每月第二個(gè)節(jié)氣減去15得第二
- 行,這樣每月兩個(gè)節(jié)氣對(duì)應(yīng)數(shù)據(jù)都小于16,每月用一個(gè)字節(jié)存放,高位存放第一個(gè)節(jié)氣數(shù)據(jù),低位存
- 放第二個(gè)節(jié)氣的數(shù)據(jù),可得下表
- ****************************************************************************************************************************/
- uchar code jieqi_code[]=
- {
- 0x96,0xB4,0xA5,0xB5,0xA6,0xA6,0x87,0x88,0x88,0x78,0x87,0x86, //2000
- …………
- …………
- …………限于本文篇幅 余下代碼請(qǐng)從51黑下載附件…………
- 0xA5,0xC3,0xA5,0xB5,0xA6,0xA6,0x87,0x88,0x78,0x78,0x87,0x87, //2050
- };
- uchar jieqi (uchar y2,m2,d2)
- {
- uchar temp,d,y,y1,m;
- uint addr;
- d=d2/16*10+d2%16;
- m=m2/16*10+m2%16;
- y1=y2/16*10+y2%16+2000;
- y=y1-2000;
- addr=y*12+m-1;
- if(d<15)
- {
- temp=15-d;
- if((jieqi_code[addr]>>4)==temp) return (m*2-1);
- else return (0);
- }
- if(d==15) return (0);
- if(d>15)
- {
- temp=d-15;
- if((jieqi_code[addr]&0x0f)==temp) return (m*2);
- else return (0);
- }
- }
- /******************************************************************************/
- //公歷節(jié)日數(shù)據(jù)庫表
- /******************************************************************************/
- void days () //公歷節(jié)日數(shù)據(jù)庫
- {
- uchar j;
- j=jieqi(yy,mo,dd);
- if(t/2%2==0)//設(shè)置變化的時(shí)間,默認(rèn)是2秒
- { //以下自己添加生日、節(jié)日信息
- if ( month_moon== 0x06 && day_moon== 0x02 ){dispString(3, 0, 1, "后天是奇奇的生日");}
- else if ( month_moon== 0x06 && day_moon== 0x03 ){dispString(3, 0, 1, "明天是奇奇的生日");}
- else if ( month_moon== 0x06 && day_moon== 0x04 ){dispString(3, 0, 1, "今天是奇奇的生日");}
- else if ( month_moon== 0x10 && day_moon== 0x07 ){dispString(3, 0, 1, "后天是老婆的生日");}
- else if ( month_moon== 0x10 && day_moon== 0x08 ){dispString(3, 0, 1, "明天是老婆的生日");}
- else if ( month_moon== 0x10 && day_moon== 0x09 ){dispString(3, 0, 1, "今天是老婆的生日");}
- else if ( month_moon== 0x08 && day_moon== 0x01 ){dispString(3, 0, 1, "后天是我的生日! ");}
- else if ( month_moon== 0x08 && day_moon== 0x02 ){dispString(3, 0, 1, "明天是我的生日! ");}
- else if ( month_moon== 0x08 && day_moon== 0x03 ){dispString(3, 0, 1, "今天是我的生日! ");}
- else if ( month_moon== 0x03 && day_moon== 0x23 ){dispString(3, 0, 1, "后天是爸爸的生日");}
- else if ( month_moon== 0x03 && day_moon== 0x24 ){dispString(3, 0, 1, "明天是爸爸的生日");}
- else if ( month_moon== 0x03 && day_moon== 0x25 ){dispString(3, 0, 1, "今天是爸爸的生日");}
- else if ( month_moon== 0x01 && day_moon== 0x30 ){dispString(3, 0, 1, "后天是媽媽的生日");}
- else if ( month_moon== 0x02 && day_moon== 0x01 ){dispString(3, 0, 1, "明天是媽媽的生日");}
- else if ( month_moon== 0x02 && day_moon== 0x02 ){dispString(3, 0, 1, "今天是媽媽的生日");}
- //農(nóng)歷節(jié)日
- else if ( month_moon== 0x12 && day_moon== 0x29 ){dispString(3, 0, 1, " 明天大年 ");}
- else if ( month_moon== 0x12 && day_moon== 0x30 ){dispString(3, 0, 1, " 大年三十 ");}
- else if ( month_moon== 0x05 && day_moon== 0x05 ){dispString(3, 0, 1, " 今天是端午節(jié) ");}
- else if ( month_moon== 0x08 && day_moon== 0x15 ){dispString(3, 0, 1, " 今天是中秋節(jié) ");}
- else if ( month_moon== 0x01 && day_moon== 0x15 ){dispString(3, 0, 1, " 今天是元宵節(jié) ");}
- else if ( month_moon== 0x02 && day_moon== 0x02 ){dispString(3, 0, 1, " 今天是龍?zhí)ь^ ");}
- else if ( month_moon== 0x07 && day_moon== 0x07 ){dispString(3, 0, 1, " 今天是七夕! ");}
- else if ( month_moon== 0x07 && day_moon== 0x15 ){dispString(3, 0, 1, " 今天是鬼節(jié)! ");}
- else if ( month_moon== 0x09 && day_moon== 0x09 ){dispString(3, 0, 1, " 今天是重陽節(jié) ");}
- else if ( month_moon== 0x12 && day_moon== 0x08 ){dispString(3, 0, 1, " 今天是臘八節(jié) ");}
- //國(guó)立節(jié)日
- else if ( mo == 0x01 && dd == 0x01 ){dispString(3, 0, 1, " 元旦快樂! ");}//1月
- else if ( mo == 0x01 && dd == 0x28 ){dispString(3, 0, 1, "今天是世界麻風(fēng)日");}
-
- else if ( mo == 0x02 && dd == 0x02 ){dispString(3, 0, 1, "今天是世界濕地日");}//2月
- else if ( mo == 0x02 && dd == 0x13 ){dispString(3, 0, 1, " 明天情人節(jié)了 ");}
- else if ( mo == 0x02 && dd == 0x14 ){dispString(3, 0, 1, " 今天是情人節(jié) ");}
-
- else if ( mo == 0x03 && dd == 0x01 ){dispString(3, 0, 1, "今天是國(guó)際海豹日");}//3月
- else if ( mo == 0x03 && dd == 0x03 ){dispString(3, 0, 1, "今天是全國(guó)愛耳日");}
- else if ( mo == 0x03 && dd == 0x08 ){dispString(3, 0, 1, "今天是3.8 婦女節(jié)");}
- else if ( mo == 0x03 && dd == 0x12 ){dispString(3, 0, 1, " 今天是植樹節(jié) ");}
- else if ( mo == 0x03 && dd == 0x14 ){dispString(3, 0, 1, "今天是國(guó)際警察日");}
- else if ( mo == 0x03 && dd == 0x15 ){dispString(3, 0, 1, "今天消費(fèi)者權(quán)益日");}
- else if ( mo == 0x03 && dd == 0x17 ){dispString(3, 0, 1, "今天是國(guó)際航海日");}
- else if ( mo == 0x03 && dd == 0x21 ){dispString(3, 0, 1, "今天是世界森林日");}
- else if ( mo == 0x03 && dd == 0x22 ){dispString(3, 0, 1, "今天是世界水日!");}
- else if ( mo == 0x03 && dd == 0x23 ){dispString(3, 0, 1, "今天是世界氣象日");}
- else if ( mo == 0x03 && dd == 0x24 ){dispString(3, 0, 1, "世界防治結(jié)核病日");}
-
- else if ( mo == 0x04 && dd == 0x01 ){dispString(3, 0, 1, "愚人節(jié),小心上當(dāng)");}//4
- else if ( mo == 0x04 && dd == 0x07 ){dispString(3, 0, 1, "今天是世界衛(wèi)生日");}
- else if ( mo == 0x04 && dd == 0x08 ){dispString(3, 0, 1, " 今天復(fù)活節(jié)! ");}
- else if ( mo == 0x04 && dd == 0x13 ){dispString(3, 0, 1, " 黑色星期五! ");}
-
- else if ( mo == 0x05 && dd == 0x01 ){dispString(3, 0, 1, " 今天是勞動(dòng)節(jié) ");}//5
- else if ( mo == 0x05 && dd == 0x04 ){dispString(3, 0, 1, "今天是五四青年節(jié)");}
- else if ( mo == 0x05 && dd == 0x08 ){dispString(3, 0, 1, "今天世界紅十字日");}
- else if ( mo == 0x05 && dd == 0x12 ){dispString(3, 0, 1, "今天是國(guó)際護(hù)士節(jié)");}
- else if ( mo == 0x05 && dd == 0x05 ){dispString(3, 0, 1, "近日注意母親節(jié)! ");}
- else if ( mo == 0x05 && dd == 0x15 ){dispString(3, 0, 1, "今天是國(guó)際家庭日");}
- else if ( mo == 0x05 && dd == 0x31 ){dispString(3, 0, 1, "今天是世界無煙日");}
-
- else if ( mo == 0x06 && dd == 0x01 ){dispString(3, 0, 1, "今天是國(guó)際兒童節(jié)");}//6
- else if ( mo == 0x06 && dd == 0x05 ){dispString(3, 0, 1, "今天是世界環(huán)境日");}
- else if ( mo == 0x06 && dd == 0x26 ){dispString(3, 0, 1, "今天是國(guó)際禁毒日");}
- else if ( mo == 0x06 && dd == 0x06 ){dispString(3, 0, 1, "今天是全國(guó)愛眼日");}
- else if ( mo == 0x06 && dd == 0x13 ){dispString(3, 0, 1, "近日注意父親節(jié)! ");}
- else if ( mo == 0x06 && dd == 0x15 ){dispString(3, 0, 1, "近日注意父親節(jié)! ");}
-
- else if ( mo == 0x07 && dd == 0x01 ){dispString(3, 0, 1, "香港回歸記念日! ");}//7
- else if ( mo == 0x07 && dd == 0x07 ){dispString(3, 0, 1, "抗日戰(zhàn)爭(zhēng)記念日! ");}
- else if ( mo == 0x07 && dd == 0x11 ){dispString(3, 0, 1, "今天是世界人口日");}
- else if ( mo == 0x08 && dd == 0x01 ){dispString(3, 0, 1, "今天是八一建軍節(jié)");}//8
- else if ( mo == 0x08 && dd == 0x08 ){dispString(3, 0, 1, "今天是中國(guó)男子節(jié)");}
- else if ( mo == 0x08 && dd == 0x15 ){dispString(3, 0, 1, "抗戰(zhàn)勝利記念日!");}
- else if ( mo == 0x09 && dd == 0x10 ){dispString(3, 0, 1, " 今天是教師節(jié) ");}//9
- else if ( mo == 0x09 && dd == 0x18 ){dispString(3, 0, 1, "九·一八事變記念");}
- else if ( mo == 0x09 && dd == 0x20 ){dispString(3, 0, 1, "今天是國(guó)際愛牙日");}
- else if ( mo == 0x09 && dd == 0x27 ){dispString(3, 0, 1, "今天是世界旅游日");}
- else if ( mo == 0x10 && dd == 0x01 ){dispString(3, 0, 1, " 今天是國(guó)慶節(jié) ");}//10
- else if ( mo == 0x10 && dd == 0x04 ){dispString(3, 0, 1, "今天是世界動(dòng)物日");}
- else if ( mo == 0x10 && dd == 0x24 ){dispString(3, 0, 1, "今天是聯(lián)合國(guó)日! ");}
- else if ( mo == 0x10 && dd == 0x12 ){dispString(3, 0, 1, "明天國(guó)際教師節(jié)! ");}
- else if ( mo == 0x10 && dd == 0x13 ){dispString(3, 0, 1, "今天是國(guó)際教師節(jié)");}
- else if ( mo == 0x11 && dd == 0x10 ){dispString(3, 0, 1, "今天是世界青年節(jié)");}//11
- else if ( mo == 0x11 && dd == 0x17 ){dispString(3, 0, 1, "今天是世界學(xué)生節(jié)");}
- else if ( mo == 0x12 && dd == 0x01 ){dispString(3, 0, 1, "今天世界艾滋病日");}//12
- else if ( mo == 0x12 && dd == 0x23 ){dispString(3, 0, 1, " 明晚平安夜! ");}
- else if ( mo == 0x12 && dd == 0x24 ){dispString(3, 0, 1, " 今晚平安夜! ");}
- else if ( mo == 0x12 && dd == 0x25 ){dispString(3, 0, 1, " 圣誕快樂 ");}
- else if ( mo == 0x12 && dd == 0x31 ){dispString(3, 0, 1, " 明日元旦 ");}
- }
- else{
- //二十四節(jié)氣
- if (j==1){dispString(3, 0, 1, " 今天小寒 ");}
- else if (j==2){dispString(3, 0, 1, " 今天大寒 ");}
- else if (j==3){dispString(3, 0, 1, " 今天立春 ");}
- else if (j==4){dispString(3, 0, 1, " 今天雨水 ");}
- else if (j==5){dispString(3, 0, 1, " 今天驚蟄 ");}
- else if (j==6){dispString(3, 0, 1, " 今天春分 ");}
- else if (j==7){dispString(3, 0, 1, " 今天清明 ");}
- else if (j==8){dispString(3, 0, 1, " 今天谷雨 ");}
- else if (j==9){dispString(3, 0, 1, " 今天立夏 ");}
- else if (j==10){dispString(3, 0, 1, " 今天小滿 ");}
- else if (j==11){dispString(3, 0, 1, " 今天芒種 ");}
- else if (j==12){dispString(3, 0, 1, " 今天夏至 ");}
- else if (j==13){dispString(3, 0, 1, " 今天小暑 ");}
- else if (j==14){dispString(3, 0, 1, " 今天大暑 ");}
- else if (j==15){dispString(3, 0, 1, " 今天立秋 ");}
- else if (j==16){dispString(3, 0, 1, " 今天處暑 ");}
- else if (j==17){dispString(3, 0, 1, " 今天白露 ");}
- else if (j==18){dispString(3, 0, 1, " 今天秋分 ");}
- else if (j==19){dispString(3, 0, 1, " 今天寒露 ");}
- else if (j==20){dispString(3, 0, 1, " 今天霜降 ");}
- else if (j==21){dispString(3, 0, 1, " 今天立冬 ");}
- else if (j==22){dispString(3, 0, 1, " 今天小雪 ");}
- else if (j==23){dispString(3, 0, 1, " 今天大雪 ");}
- else if (j==24){dispString(3, 0, 1, " 今天冬至 ");}
- //非節(jié)日時(shí)顯示時(shí)晨信息
- else { if ( hh >= 0x04 && hh < 0x06 ){dispString(3, 0, 1, " 凌晨 點(diǎn) 分 ");
- lcdWriteCommand(0x9b);
- if(hh1/10 != 0){lcdWriteData((hh1/10)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(hh1%10+0x30);
- lcdWriteCommand(0x9d); //":"
- if(mm/16 != 0){lcdWriteData((mm/16)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(mm%16+0x30); }
- if ( hh >= 0x06 && hh < 0x08 ){dispString(3, 0, 1, " 早晨 點(diǎn) 分 ");
- lcdWriteCommand(0x9b);
- if(hh1/10 != 0){lcdWriteData((hh1/10)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(hh1%10+0x30);
- lcdWriteCommand(0x9d); //":"
- if(mm/16 != 0){lcdWriteData((mm/16)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(mm%16+0x30); }
- if ( hh >= 0x08 && hh < 0x12 ){dispString(3, 0, 1, " 上午 點(diǎn) 分 ");
- lcdWriteCommand(0x9b);
- if(hh1/10 != 0){lcdWriteData((hh1/10)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(hh1%10+0x30);
- lcdWriteCommand(0x9d); //":"
- if(mm/16 != 0){lcdWriteData((mm/16)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(mm%16+0x30); }
- if ( hh == 0x12) {dispString(3, 0, 1, " 中午 點(diǎn) 分 ");
- lcdWriteCommand(0x9b);
- if(hh1/10 != 0){lcdWriteData((hh1/10)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(hh1%10+0x30);
- lcdWriteCommand(0x9d); //":"
- if(mm/16 != 0){lcdWriteData((mm/16)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(mm%16+0x30); }
- if ( hh >= 0x13 && hh < 0x18 ){dispString(3, 0, 1, " 下午 點(diǎn) 分 ");
- lcdWriteCommand(0x9b);
- if(hh1/10 != 0){lcdWriteData((hh1/10)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(hh1%10+0x30);
- lcdWriteCommand(0x9d); //":"
- if(mm/16 != 0){lcdWriteData((mm/16)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(mm%16+0x30); }
- if ( hh >= 0x18 && hh < 0x22 ){dispString(3, 0, 1, " 晚上 點(diǎn) 分 ");
- lcdWriteCommand(0x9b);
- if(hh1/10 != 0){lcdWriteData((hh1/10)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(hh1%10+0x30);
- lcdWriteCommand(0x9d); //":"
- if(mm/16 != 0){lcdWriteData((mm/16)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(mm%16+0x30); }
- if ( hh >= 0x22 && hh <= 0x23 ){dispString(3, 0, 1, " 夜里 點(diǎn) 分 ");
- lcdWriteCommand(0x9b);
- if(hh1/10 != 0){lcdWriteData((hh1/10)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(hh1%10+0x30);
- lcdWriteCommand(0x9d); //":"
- if(mm/16 != 0){lcdWriteData((mm/16)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(mm%16+0x30); }
- if ( hh >= 0x00 && hh < 0x04 ){dispString(3, 0, 1, " 深夜 點(diǎn) 分 ");
- lcdWriteCommand(0x9b);
- if(hh1/10 != 0){lcdWriteData((hh1/10)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(hh1%10+0x30);
- lcdWriteCommand(0x9d); //":"
- if(mm/16 != 0){lcdWriteData((mm/16)+0x30);} //十位消隱
- else{lcdWriteData(0x20);}//同上
- lcdWriteData(mm%16+0x30); }
- }
- }
- }
- /******************************ds1820程序***************************************/
- void delay_18B20(unsigned int i)//延時(shí)1微秒
- {
- while(i--);
- }
- void ds1820rst()//ds1820復(fù)位*
- { unsigned char x=0;
- DQ = 1; //DQ復(fù)位
- delay_18B20(4); //延時(shí)
- DQ = 0; //DQ拉低
- delay_18B20(100); //精確延時(shí)大于480us
- DQ = 1; //拉高
- delay_18B20(40);
- }
- unsigned char ds1820rd()//讀數(shù)據(jù)
- { unsigned char i=0;
- unsigned char dat = 0;
- for (i=8;i>0;i--)
- { DQ = 0; //給脈沖信號(hào)
- dat>>=1;
- DQ = 1; //給脈沖信號(hào)
- if(DQ)
- dat|=0x80;
- delay_18B20(10);
- }
- return(dat);
- }
- void ds1820wr(uchar wdata)//寫數(shù)據(jù)
- {unsigned char i=0;
- for (i=8; i>0; i--)
- { DQ = 0;
- DQ = wdata&0x01;
- delay_18B20(10);
- DQ = 1;
- wdata>>=1;
- }
- }
- read_temp()//讀取溫度值并轉(zhuǎn)換
- {uchar a,b;
- ds1820rst();
- ds1820wr(0xcc);//跳過讀序列號(hào)
- ds1820wr(0x44);//啟動(dòng)溫度轉(zhuǎn)換
- ds1820rst();
- ds1820wr(0xcc);//跳過讀序列號(hào)
- ds1820wr(0xbe);//讀取溫度
- a=ds1820rd();
- b=ds1820rd();
- tvalue=b;
- tvalue<<=8;
- tvalue=tvalue|a;
- if(tvalue<0x0fff)
- tflag=0;
- else
- {tvalue=~tvalue+1;
- tflag=1;
- }
- tvalue=tvalue*(0.625);//溫度值擴(kuò)大10倍,精確到1位小數(shù)
- return(tvalue);
- }
- /*****************************************************************************/
- //聲明(當(dāng)各函數(shù)的排列適當(dāng)時(shí)可不用聲明)
- void lcm_w_ss(void);void lcm_w_mm(void);
- void lcm_w_hh(void);void lcm_w_dd(void);
- void lcm_w_mo(void);void lcm_w_yy(void);
- void lcm_w_xq(void);
- unsigned char clock_in(void);
- void clock_out(unsigned char dd);
- void Init_1302(void);
- unsigned char read_clock(unsigned char ord);
- void read_clockS(void);
- void Set_time(unsigned char sel);
- void write_clock(unsigned char ord, unsigned char dd);
- void updata (void);
- void lcmnongli();
- void lcmjieqi();
- void lcmshengxiao();
- /*****************************************************************************/
- //農(nóng)歷顯示
- /******************************************************************************/
- void lcmnongli()
- {
- uchar yue,ri;
- year_sun=yy;
- month_sun=mo;
- day_sun=dd;
- Conversion(c_sun,year_sun,month_sun,day_sun);
- yue=(month_moon/16)*10+month_moon%16;
- year1=yue;
- ri=(day_moon/16)*10+day_moon%16; //顯示農(nóng)歷月
- if(yue==1){dispString(1, 0, 1, "正"); }
- if(yue==2){dispString(1, 0, 1, "二"); }
- if(yue==3){dispString(1, 0, 1, "三"); }
- if(yue==4){dispString(1, 0, 1, "四"); }
- if(yue==5){dispString(1, 0, 1, "五"); }
- if(yue==6){dispString(1, 0, 1, "六"); }
- if(yue==7){dispString(1, 0, 1, "七"); }
- if(yue==8){dispString(1, 0, 1, "八"); }
- if(yue==9){dispString(1, 0, 1, "九"); }
- if(yue==10){dispString(1, 0, 1, "十"); }
- if(yue==11){dispString(1, 0, 1, "冬"); }
- if(yue==12){dispString(1, 0, 1, "臘"); }
- dispString(1, 1, 1, "月");
- if(ri<=10)
- {
- if(ri==1){ dispString(1, 2, 1, "初一"); }
- if(ri==2){ dispString(1, 2, 1, "初二"); }
- if(ri==3){ dispString(1, 2, 1, "初三"); }
- if(ri==4){ dispString(1, 2, 1, "初四");}
- if(ri==5){ dispString(1, 2, 1, "初五"); }
- if(ri==6){ dispString(1, 2, 1, "初六"); }
- if(ri==7){ dispString(1, 2, 1, "初七"); }
- if(ri==8){ dispString(1, 2, 1, "初八"); }
- if(ri==9){ dispString(1, 2, 1, "初九"); }
- if(ri==10){ dispString(1, 2, 1, "初十"); }
- }
- else
- {
- if(ri==11){ dispString(1, 2, 1, "十一");}
- if(ri==12){ dispString(1, 2, 1, "十二");}
- if(ri==13){ dispString(1, 2, 1, "十三"); }
- if(ri==14){ dispString(1, 2, 1, "十四"); }
- if(ri==15){ dispString(1, 2, 1, "十五"); }
- if(ri==16){ dispString(1, 2, 1, "十六"); }
- if(ri==17){ dispString(1, 2, 1, "十七"); }
- if(ri==18){ dispString(1, 2, 1, "十八"); }
- if(ri==19){ dispString(1, 2, 1, "十九"); }
- if(ri==20){ dispString(1, 2, 1, "二十");}
- if(ri==21){ dispString(1, 2, 1, "廿一"); }
- if(ri==22){ dispString(1, 2, 1, "廿二");}
- if(ri==23){ dispString(1, 2, 1, "廿三"); }
- if(ri==24){ dispString(1, 2, 1, "廿四"); }
- if(ri==25){ dispString(1, 2, 1, "廿五"); }
- if(ri==26){ dispString(1, 2, 1, "廿六");}
- if(ri==27){ dispString(1, 2, 1, "廿七"); }
- if(ri==28){ dispString(1, 2, 1, "廿八"); }
- if(ri==29){ dispString(1, 2, 1, "廿九");}
- if(ri==30){ dispString(1, 2, 1, "三十"); }
- }
- }
- /******************************************************************************/
- //十二生肖顯示
- /******************************************************************************/
- void lcmshengxiao()
- {
- uint y3;
- y3=(yy/16*10+yy%16+2000-1900)%12;
- if(year<6 & year1>6) y3--;
- switch(y3)
- {
- case 0: dispString(0, 6, 1, "子鼠");
- break;
- case 1: dispString(0, 6, 1, "丑牛");
- break;
- case 2: dispString(0, 6, 1, "寅虎");
- break;
- case 3: dispString(0, 6, 1, "卯兔");
- break;
- case 4: dispString(0, 6, 1, "辰龍");
- break;
- case 5: dispString(0, 6, 1, "巳蛇");
- break;
- case 6: dispString(0, 6, 1, "午馬");
- break;
- case 7: dispString(0, 6, 1, "未羊");
- break;
- case 8: dispString(0, 6, 1, "申猴");
- break;
- case 9: dispString(0, 6, 1, "酉雞");
- break;
- case 10: dispString(0, 6, 1, "戌狗");
- break;
- case 11: dispString(0, 6, 1, "亥豬");
- break;
- }
- }
- /*****************************************************************************/
- //調(diào)時(shí)用加1程序
- void Set_time(unsigned char sel)//根據(jù)選擇調(diào)整的相應(yīng)項(xiàng)目加1并寫入DS1302
- {
- signed char address,item;
- signed char max,mini;
- dispString(3, 2, 1, "設(shè)置");
- if(sel==6) {dispString(3, 4, 1, "秒鐘");address=0x80; max=59;mini=0;} //秒7
- if(sel==5) {dispString(3, 4, 1, "分鐘");address=0x82; max=59;mini=0;} //分鐘6
- if(sel==4) {dispString(3, 4, 1, "小時(shí)");address=0x84; max=23;mini=0;} //小時(shí)5
- if(sel==3) {dispString(3, 4, 1, "星期");address=0x8a; max=7;mini=1;} //星期4
- if(sel==2) {dispString(3, 4, 1, "日期");address=0x86; max=31;mini=1;} //日3
- if(sel==1) {dispString(3, 4, 1, "月份");address=0x88; max=12;mini=1;} //月2
- if(sel==0) {dispString(3, 4, 1, "年份");address=0x8c; max=99; mini=0;} //年1
- switch(sel)
- {
- case 0: convertChar(0, 1, 2);
- break;
- case 1: convertChar(0, 2, 3);
- break;
- case 2: convertChar(0, 4, 2);
- break;
- case 3: convertChar(1, 7, 2);
- break;
- case 4: convertChar(2, 0, 2);
- break;
- case 5: convertChar(2, 1, 3);
- break;
- case 6: convertChar(2, 3, 2);
- break;
- }
- //讀取1302某地址上的數(shù)值轉(zhuǎn)換成10進(jìn)制賦給item
- item=((read_clock(address+1))/16)*10 + (read_clock(address+1))%16;
- if(KEY_2 == 0)
- {
- item++;//數(shù)加 1
- }
- if(KEY_4 == 0)
- {
- item--;//數(shù)減 1
- }
- if(item>max) item=mini;//查看數(shù)值有效范圍
- if(item<mini) item=max;
- write_clock(0x8e,0x00);//允許寫操作
- write_clock(address,(item/10)*16+item%10);//轉(zhuǎn)換成16進(jìn)制寫入1302
- write_clock(0x8e,0x80);//寫保護(hù),禁止寫操作
-
- }
- /*****************************************************************************/
- //設(shè)置1302的初始時(shí)間(自動(dòng)初始化)
- void Init_1302(void){//-設(shè)置1302的初始時(shí)間(2007年1月1日00時(shí)00分00秒星期一)
- unsigned char f;
- if(read_clock(0xc1) != 0xaa){
- write_clock(0x8e,0x00);//允許寫操作
- write_clock(0x8c,0x07);//年
- write_clock(0x8a,0x01);//星期
- write_clock(0x88,0x01);//月
- write_clock(0x86,0x01);//日
- write_clock(0x84,0x00);//小時(shí)
- write_clock(0x82,0x00);//分鐘
- write_clock(0x80,0x00);//秒
- write_clock(0x90,0xa5);//充電
- write_clock(0xc0,0xaa);//寫入初始化標(biāo)志RAM(第00個(gè)RAM位置)
- for(f=0;f<60;f=f+2){//清除鬧鐘RAM位為0
- write_clock(0xc2+f,0x00);
- }
- write_clock(0x8e,0x80);//禁止寫操作
- }
- }
- /*****************************************************************************/
- //DS1302寫數(shù)據(jù)(底層協(xié)議)
- void write_clock(unsigned char ord, unsigned char dd){
- clock_clk=0;
- clock_Rst=0;
- clock_Rst=1;
- clock_out(ord);
- clock_out(dd);
- clock_Rst=0;
- clock_clk=1;
- }
- /*****************************************************************************/
- //1302驅(qū)動(dòng)程序(底層協(xié)議)
- void clock_out(unsigned char dd){
- ACC=dd;
- clock_dat=a0; clock_clk=1; clock_clk=0;
- clock_dat=a1; clock_clk=1; clock_clk=0;
- clock_dat=a2; clock_clk=1; clock_clk=0;
- clock_dat=a3; clock_clk=1; clock_clk=0;
- clock_dat=a4; clock_clk=1; clock_clk=0;
- clock_dat=a5; clock_clk=1; clock_clk=0;
- clock_dat=a6; clock_clk=1; clock_clk=0;
- clock_dat=a7; clock_clk=1; clock_clk=0;
- }
- /*****************************************************************************/
- //DS1302寫入字節(jié)(底層協(xié)議)
- unsigned char clock_in(void){
- clock_dat=1;
- a0=clock_dat;
- clock_clk=1; clock_clk=0; a1=clock_dat;
- clock_clk=1; clock_clk=0; a2=clock_dat;
- clock_clk=1; clock_clk=0; a3=clock_dat;
- clock_clk=1; clock_clk=0; a4=clock_dat;
- clock_clk=1; clock_clk=0; a5=clock_dat;
- clock_clk=1; clock_clk=0; a6=clock_dat;
- clock_clk=1; clock_clk=0; a7=clock_dat;
- return(ACC);
- }
- /*****************************************************************************/
- //DS1302讀數(shù)據(jù)(底層協(xié)議)
- unsigned char read_clock(unsigned char ord){
- unsigned char dd=0;
- clock_clk=0;
- clock_Rst=0;
- clock_Rst=1;
- clock_out(ord);
- dd=clock_in();
- clock_Rst=0;
- clock_clk=1;
- return(dd);
- }
- /*****************************************************************************/
- /*****************************************************************************/
- //揚(yáng)聲器驅(qū)動(dòng)程序(鬧鐘音樂)
- /*****************************************************************************/
- void Beep(void)
- {//BELL-揚(yáng)聲器--整點(diǎn)報(bào)時(shí)
- unsigned char a;//定義變量用于發(fā)聲的長(zhǎng)度設(shè)置
- for(a=60;a>0;a--){//第一個(gè)聲音的長(zhǎng)度
- beep = ~beep;//取反揚(yáng)聲器驅(qū)動(dòng)口,以產(chǎn)生音頻
- Delay(100);//音調(diào)設(shè)置延時(shí)
- }
- for(a=100;a>0;a--){//同上
- beep = ~beep;
- Delay(80);//
- }
- for(a=100;a>0;a--){//同上
- beep = ~beep;
- Delay(30);//
- }
- beep = 1;//音樂結(jié)束后揚(yáng)聲器拉高關(guān)閉
- }
- /*****************************************************************************/
- void Beep_set(void){//BELL -揚(yáng)聲器--確定設(shè)置
- unsigned char a;//定義變量用于發(fā)聲的長(zhǎng)度設(shè)置
- for(a=50;a>0;a--){//第一個(gè)聲音的長(zhǎng)度
- beep = ~beep;//取反揚(yáng)聲器驅(qū)動(dòng)口,以產(chǎn)生音頻
- Delay(100);//音調(diào)設(shè)置延時(shí)
- }
- for(a=100;a>0;a--){//同上
- beep = ~beep;
- Delay(50);//
- }
- for(a=50;a>0;a--){//同上
- beep = ~beep;
- Delay(100);//
- }
- beep = 1;//音樂結(jié)束后揚(yáng)聲器拉高關(guān)閉
- }
- /*****************************************************************************/
- void Beep_key(void){//-揚(yáng)聲器--按鍵音
- unsigned char a;//定義變量用于發(fā)聲的長(zhǎng)度設(shè)置
- for(a=100;a>0;a--){//聲音的長(zhǎng)度
- beep = ~beep;
- Delay(50);//音調(diào)設(shè)置延時(shí)
- }
- beep = 1;//音樂結(jié)束后揚(yáng)聲器拉高關(guān)閉
- }
- /*****************************************************************************/
- /*****************************************************************************/
- //電子鐘應(yīng)用層程序設(shè)計(jì)
- /*****************************************************************************/
- //向LCM中填寫 年 數(shù)據(jù)
- void lcm_w_yy(void){
- //if(read_clock(0x8d) != yy){
- yy = read_clock(0x8d);
- dispString(0, 0, 1, "20");
- lcdWriteCommand(0x81);
- lcdWriteData((yy/16)+0x30);
- lcdWriteData(yy%16+0x30);
- } //}
- /*****************************************************************************/
- //向LCM中填寫 月 數(shù)據(jù)
- void lcm_w_mo(void){
- //if(read_clock(0x89) != mo){
- mo = read_clock(0x89);
- lcdWriteCommand(0x82);
- lcdWriteData(0x2d);
- lcdWriteData((mo/16)+0x30); //十位消隱
- lcdWriteData(mo%16+0x30);
- lcdWriteData(0x2d);
- year=(mo/16*10)+mo%16;
- } //}
- /*****************************************************************************/
- //星期處理并送入LCM的指定區(qū)域
- void lcm_w_xq(void){
- //if(read_clock(0x8b) != xq){
- xq = read_clock(0x8b);
- selx = (read_clock(0x8b))%16; //字節(jié)低4位的BCD碼放入selx
- if(selx==7) {dispString(1, 7, 1, "日");} //
- if(selx==6) {dispString(1, 7, 1, "六");} //
- if(selx==5) {dispString(1, 7, 1, "五");} //
- if(selx==4) {dispString(1, 7, 1, "四");} //
- if(selx==3) {dispString(1, 7, 1, "三");} //
- if(selx==2) {dispString(1, 7, 1, "二");} //
- if(selx==1) {dispString(1, 7, 1, "一");} //星期一
- dispString(1, 5, 1, "星期");
- } //}
- /*****************************************************************************/
- //向LCM中填寫 日 數(shù)據(jù)
- void lcm_w_dd(void){
- // if(read_clock(0x87) != dd){
- dd = read_clock(0x87);
- lcdWriteCommand(0x84);
- lcdWriteData((dd/16)+0x30); //十位消隱
- lcdWriteData(dd%16+0x30);
- } //}
- /*****************************************************************************/
- //向LCM中填寫 小時(shí) 數(shù)據(jù)
- void lcm_w_hh(void){
- if(read_clock(0x85) != hh){
- hh = read_clock(0x85);
- if (hh > 0x07 && hh < 0x22 && w == 0){
- Beep();//整點(diǎn)報(bào)時(shí)音
- }
- }
- lcdWriteCommand(0x88);
- lcdWriteData((hh/16)+0x30);
- lcdWriteData(hh%16+0x30);
- hh1=hh/16*10+hh%16;
- if(hh1>12) hh1=(hh1-12);
-
- }
- /*****************************************************************************/
- //向LCM中填寫 分鐘 數(shù)據(jù)
- void lcm_w_mm(void){
- if(read_clock(0x83) != mm)
- {
- mm = read_clock(0x83);
- }
- lcdWriteCommand(0x89);
- if(t/1%2==0)lcdWriteData(0x3a); //":"
- else{lcdWriteData(0x20);}
- lcdWriteData((mm/16)+0x30);
- lcdWriteData(mm%16+0x30);
- if(t/1%2==0) lcdWriteData(0x3a); //":"
- else{lcdWriteData(0x20);}
- }
- void disp_temper()//溫度值顯示
- {
- uint temper;
- uchar temper_ge,temper_shi,temper_bai;
- temper=read_temp();//讀取溫度
- temper_ge=temper%10+0x30;
- temper_shi=temper%100/10+0x30;
- temper_bai=temper/100+0x30;
- if(tflag==1)
- {
- dispString(2, 4, 1, " -");
- }
- else
- {
- dispString(2, 4, 1, " ");
- }
- if(temper_bai==0x30) temper_bai=0x20;
- lcdWriteCommand(0x8d);
- lcdWriteData(temper_bai);
- lcdWriteData(temper_shi);
- lcdWriteData('.');
- lcdWriteData(temper_ge);
- dispString(2, 7, 1, "℃");
- }
- /*********************************************************************************************************
- 處理顯示函數(shù)(被調(diào)用層)
- *********************************************************************************************************/
- void deal(uchar sfm)
- {
- shi=sfm/16;
- ge=sfm%16;
- }
- /********************************************************************************************************
- 12864顯示時(shí)分秒函數(shù)(被調(diào)用層)
- ********************************************************************************************************/
- void display(uchar add,uchar dat)
- {
- uchar i,j=0;
- for(i=16;i<32;i++)
- {
- lcdWriteCommand(0x80+i);
- lcdWriteCommand(0x90+add);
- lcdWriteData(tab[dat][j++]);
- lcdWriteData(tab[dat][j++]);
- }
- for(i=0;i<16;i++)
- {
- lcdWriteCommand(0x80+i);
- lcdWriteCommand(0x88+add);
- lcdWriteData(tab[dat][j++]);
- lcdWriteData(tab[dat][j++]);
- }
- }
- ............................
- 完整程序在附件
復(fù)制代碼
QQ截圖20181230163138.png (13.87 KB, 下載次數(shù): 62)
下載附件
2018-12-30 16:34 上傳
全部資料51hei下載地址:
電路和PCB.rar
(3.08 MB, 下載次數(shù): 269)
2018-12-30 16:49 上傳
點(diǎn)擊文件名下載附件
下載積分: 黑幣 -5
12864萬年歷全套資料.7z
(3.54 MB, 下載次數(shù): 378)
2018-12-30 17:00 上傳
點(diǎn)擊文件名下載附件
下載積分: 黑幣 -5
|