1.設(shè)計(jì)目的 1學(xué)習(xí)AT89C52的原理及應(yīng)用 2了解使用單片機(jī)處理復(fù)雜邏輯的方法 3學(xué)習(xí)時(shí)鐘芯片DS1302的原理及應(yīng)用 2.設(shè)計(jì)任務(wù) 系統(tǒng)中時(shí)鐘模塊主要由DS1302時(shí)鐘芯片組成,為整個(gè)系統(tǒng)提供非常精確的時(shí)間數(shù)據(jù);溫度傳感器模塊主要由DS18B20芯片組成,該模塊的主要作用就是獲得周圍環(huán)境的溫度值;液晶顯示模塊主要由12864液晶顯示器組成,用于顯示日期、時(shí)間、溫度等參數(shù),也可以通過(guò)按鍵來(lái)調(diào)整各個(gè)參數(shù)。 基本要求 (1)顯示年月日(含閏年)、時(shí)分秒、農(nóng)歷、生肖和節(jié)日等; (2)具有鬧鐘,提醒節(jié)日功能; (3)有溫度顯示功能; (4)電子鐘具備校時(shí),定時(shí)功能。
- 高級(jí)要求
- 設(shè)置鬧鐘,根據(jù)設(shè)定的年、月、日自動(dòng)匹配生肖、農(nóng)歷、星期以及節(jié)日提醒等功能。設(shè)計(jì)者可以對(duì)該設(shè)計(jì)進(jìn)行功能擴(kuò)展,比如增加室內(nèi)濕度的檢測(cè)及顯示;增加將要被調(diào)整時(shí)間的位置提示,如閃爍提示等。
3.設(shè)計(jì)原理圖 
液晶多功能電子臺(tái)歷設(shè)計(jì)流程圖
單片機(jī)源程序如下: - #include <AT89X52.h>
- #include <string.h>
- #include <intrins.h>
- #include "SoundPlay.h" //音樂(lè)文件
- #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; //左上
- sbit KEY_2 = P2^6; //左下
- sbit KEY_3 = P2^5; //右上
- sbit KEY_4 = P2^4; //右下
- /****************************************************************************/
- //LCD接口定義
- sbit RS = P1^5; //模式位,為0輸入指令,為1輸入數(shù)據(jù)
- sbit RW = P1^6; //讀寫位,為0讀,為1寫
- sbit E = P1^7; //使能位
- #define Lcd_Bus P0 //數(shù)據(jù)總線
- /*****************************************************************************/
- //定義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,mm,ss,n,n1,n2,hh1,mm1,year,year1;//定義時(shí)間映射全局變量(專用寄存器)
- unsigned char shi,ge,sec_temp,min_temp,hour_temp,secl,selx,e=0;
- 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ù)器變量
- /****************************************************************************/
- /***************************************************************************/
- //LCD驅(qū)動(dòng)(DY12864CBL液晶顯示屏并口驅(qū)動(dòng)程序)
- /****************************************************************************/
- void chk_busy()
- { //檢查忙位(底層)
- RS=0;
- RW=1;
- E=1;
- Lcd_Bus=0xff;
- while((Lcd_Bus&0x80)==0x80);
- E=0;
- }
- /****************************************************************************/
- void write_com(unsigned char cmdcode)
- { //寫命令到LCD(底層)
- chk_busy();
- RS=0;
- RW=0;
- E=1;
- Lcd_Bus=cmdcode;
- E=0;
- }
- /****************************************************************************/
- void write_data(unsigned char Dispdata){ //寫數(shù)據(jù)到LCD(底層)
- chk_busy();
- RS=1;
- RW=0;
- E=1;
- Lcd_Bus=Dispdata;
- E=0;
- }
- /****************************************************************************/
- void lcm_init()
- { //初始化LCD屏(被調(diào)用層)
- write_com(0x30); //選擇8bit數(shù)據(jù)流
- write_com(0x0c); //開顯示(無(wú)游標(biāo)、不反白)
- write_com(0x01); //清除顯示,并且設(shè)定地址指針為00H
- }
- /****************************************************************************/
- void lcm_w_word(unsigned char *s)
- { //向LCM發(fā)送一個(gè)字符串,長(zhǎng)度64字符之內(nèi)。(被調(diào)用層)
- while(*s>0)
- { //應(yīng)用:lcm_w_word("您好!");
- write_data(*s);
- s++;
- }
- }
- /******************************************************************************/
- void write_data1(unsigned char Dispdata)
- { //寫數(shù)據(jù)到LCD(底層)
- chk_busy();
- RS=1;
- RW=0;
- E=1;
- Lcd_Bus=Dispdata;
- DelayM(40);
- E=0;
- }
- /*****************************************************************************/
- void lcm_w_word1(unsigned char *s)
- { //向LCM發(fā)送一個(gè)字符串,長(zhǎng)度64字符之內(nèi)。(被調(diào)用層)
- while(*s>0)
- { //應(yīng)用:lcm_w_word("您好!");
- write_data1(*s);
- s++;
- }
- }
- /*************************************************************************/
- void lcm_w_test(bit i,unsigned char word)
- { //寫指令或數(shù)據(jù)(被調(diào)用層)
- if(i == 0)
- {
- write_com(word); //寫指令或數(shù)據(jù)(0,指令)
- }else{
- write_data(word); //寫指令或數(shù)據(jù)(1,數(shù)據(jù))
- }
- }
- /**************************************************************** *****/
- void lcm_clr(void)
- { //清屏函數(shù)
- lcm_w_test(0,0x01);
- }
- /************************清理圖片緩沖區(qū)*************************/
- void clear_img()
- {
- uchar i,j;
- for(i=0;i<32;i++)
- {
- write_com(0x80+i);
- write_com(0x80);
- for(j=0;j<16;j++)
- {
- write_data(0x00);
- }
- }
- for(i=0;i<32;i++)
- {
- write_com(0x80+i);
- write_com(0x88);
- for(j=0;j<16;j++)
- {
- write_data(0x00);
- }
- }
- }
- /**************************************************************/
- unsigned char code BMP1[]={
- /*-- 一幅圖像 KISS- 正向取模,字節(jié)正序*/
- /*-- 寬度x高度=128x64 --*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- …………
- …………
- …………限于本文篇幅 余下代碼請(qǐng)從51黑下載附件…………
- 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陽(yáng)歷數(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陽(yáng)歷數(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則該年無(wú)閏月
- 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,無(wú)閏月指向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陽(yáng)歷數(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ù)表
- /*
- 算法:日期+年份+所過(guò)閏年數(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; //所過(guò)閏年數(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ù)庫(kù)
- 入口參數(shù): unsigned char(yy,mo,dd) 對(duì)應(yīng) 年月日
- 出口參數(shù): unsigned char(0-24) 1-24對(duì)應(yīng)二十四節(jié)氣
- 作者 : TOTOP
- 二十四節(jié)氣數(shù)據(jù)庫(kù)(1901--2050)
- 數(shù)據(jù)格式說(shuō)明:
- 如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
- 0xA5,0xB3,0xA5,0xA5,0xA6,0xA6,0x88,0x88,0x88,0x78,0x87,0x87, //2001
- 0xA5,0xB4,0x96,0xA5,0x96,0x96,0x88,0x78,0x78,0x78,0x87,0x87, //2002
- 0x95,0xB4,0x96,0xA5,0x96,0x97,0x88,0x78,0x78,0x69,0x78,0x87, //2003
- 0x96,0xB4,0xA5,0xB5,0xA6,0xA6,0x87,0x88,0x88,0x78,0x87,0x86, //2004
- 0xA5,0xB3,0xA5,0xA5,0xA6,0xA6,0x88,0x88,0x88,0x78,0x87,0x87, //2005
- 0xA5,0xB4,0x96,0xA5,0xA6,0x96,0x88,0x88,0x78,0x78,0x87,0x87, //2006
- 0x95,0xB4,0x96,0xA5,0x96,0x97,0x88,0x78,0x78,0x69,0x78,0x87, //2007
- 0x96,0xB4,0xA5,0xB5,0xA6,0xA6,0x87,0x88,0x87,0x78,0x87,0x86, //2008
- 0xA5,0xB3,0xA5,0xB5,0xA6,0xA6,0x88,0x88,0x88,0x78,0x87,0x87, //2009
- 0xA5,0xB4,0x96,0xA5,0xA6,0x96,0x88,0x88,0x78,0x78,0x87,0x87, //2010
- 0x95,0xB4,0x96,0xA5,0x96,0x97,0x88,0x78,0x78,0x79,0x78,0x87, //2011
- 0x96,0xB4,0xA5,0xB5,0xA5,0xA6,0x87,0x88,0x87,0x78,0x87,0x86, //2012
- 0xA5,0xB3,0xA5,0xB5,0xA6,0xA6,0x87,0x88,0x88,0x78,0x87,0x87, //2013
- 0xA5,0xB4,0x96,0xA5,0xA6,0x96,0x88,0x88,0x78,0x78,0x87,0x87, //2014
- 0x95,0xB4,0x96,0xA5,0x96,0x97,0x88,0x78,0x78,0x79,0x77,0x87, //2015
- 0x95,0xB4,0xA5,0xB4,0xA5,0xA6,0x87,0x88,0x87,0x78,0x87,0x86, //2016
- 0xA5,0xC3,0xA5,0xB5,0xA6,0xA6,0x87,0x88,0x88,0x78,0x87,0x87, //2017
- 0xA5,0xB4,0xA6,0xA5,0xA6,0x96,0x88,0x88,0x78,0x78,0x87,0x87, //2018
- 0xA5,0xB4,0x96,0xA5,0x96,0x96,0x88,0x78,0x78,0x79,0x77,0x87, //2019
- 0x95,0xB4,0xA5,0xB4,0xA5,0xA6,0x97,0x87,0x87,0x78,0x87,0x86, //2020
- 0xA5,0xC3,0xA5,0xB5,0xA6,0xA6,0x87,0x88,0x88,0x78,0x87,0x86, //2021
- 0xA5,0xB4,0xA5,0xA5,0xA6,0x96,0x88,0x88,0x88,0x78,0x87,0x87, //2022
- 0xA5,0xB4,0x96,0xA5,0x96,0x96,0x88,0x78,0x78,0x79,0x77,0x87, //2023
- 0x95,0xB4,0xA5,0xB4,0xA5,0xA6,0x97,0x87,0x87,0x78,0x87,0x96, //2024
- 0xA5,0xC3,0xA5,0xB5,0xA6,0xA6,0x87,0x88,0x88,0x78,0x87,0x86, //2025
- 0xA5,0xB3,0xA5,0xA5,0xA6,0xA6,0x88,0x88,0x88,0x78,0x87,0x87, //2026
- 0xA5,0xB4,0x96,0xA5,0x96,0x96,0x88,0x78,0x78,0x78,0x87,0x87, //2027
- 0x95,0xB4,0xA5,0xB4,0xA5,0xA6,0x97,0x87,0x87,0x78,0x87,0x96, //2028
- 0xA5,0xC3,0xA5,0xB5,0xA6,0xA6,0x87,0x88,0x88,0x78,0x87,0x86, //2029
- 0xA5,0xB3,0xA5,0xA5,0xA6,0xA6,0x88,0x88,0x88,0x78,0x87,0x87, //2030
- 0xA5,0xB4,0x96,0xA5,0x96,0x96,0x88,0x78,0x78,0x78,0x87,0x87, //2031
- 0x95,0xB4,0xA5,0xB4,0xA5,0xA6,0x97,0x87,0x87,0x78,0x87,0x96, //2032
- 0xA5,0xC3,0xA5,0xB5,0xA6,0xA6,0x88,0x88,0x88,0x78,0x87,0x86, //2033
- 0xA5,0xB3,0xA5,0xA5,0xA6,0xA6,0x88,0x78,0x88,0x78,0x87,0x87, //2034
- 0xA5,0xB4,0x96,0xA5,0xA6,0x96,0x88,0x88,0x78,0x78,0x87,0x87, //2035
- 0x95,0xB4,0xA5,0xB4,0xA5,0xA6,0x97,0x87,0x87,0x78,0x87,0x96, //2036
- 0xA5,0xC3,0xA5,0xB5,0xA6,0xA6,0x87,0x88,0x88,0x78,0x87,0x86, //2037
- 0xA5,0xB3,0xA5,0xA5,0xA6,0xA6,0x88,0x88,0x88,0x78,0x87,0x87, //2038
- 0xA5,0xB4,0x96,0xA5,0xA6,0x96,0x88,0x88,0x78,0x78,0x87,0x87, //2039
- 0x95,0xB4,0xA5,0xB4,0xA5,0xA6,0x97,0x87,0x87,0x78,0x87,0x96, //2040
- 0xA5,0xC3,0xA5,0xB5,0xA5,0xA6,0x87,0x88,0x87,0x78,0x87,0x86, //2041
- 0xA5,0xB3,0xA5,0xB5,0xA6,0xA6,0x88,0x88,0x88,0x78,0x87,0x87, //2042
- 0xA5,0xB4,0x96,0xA5,0xA6,0x96,0x88,0x88,0x78,0x78,0x87,0x87, //2043
- 0x95,0xB4,0xA5,0xB4,0xA5,0xA6,0x97,0x87,0x87,0x88,0x87,0x96, //2044
- 0xA5,0xC3,0xA5,0xB4,0xA5,0xA6,0x87,0x88,0x87,0x78,0x87,0x86, //2045
- 0xA5,0xB3,0xA5,0xB5,0xA6,0xA6,0x87,0x88,0x88,0x78,0x87,0x87, //2046
- 0xA5,0xB4,0x96,0xA5,0xA6,0x96,0x88,0x88,0x78,0x78,0x87,0x87, //2047
- 0x95,0xB4,0xA5,0xB4,0xA5,0xA5,0x97,0x87,0x87,0x88,0x86,0x96, //2048
- 0xA4,0xC3,0xA5,0xA5,0xA5,0xA6,0x97,0x87,0x87,0x78,0x87,0x86, //2049
- 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ù)庫(kù)表
- /******************************************************************************/
- void days () //公歷節(jié)日數(shù)據(jù)庫(kù)
- {
- uchar j;
- j=jieqi(yy,mo,dd);
- lcm_w_test(0,0x98); //在屏幕第四行
- //家人生日,紀(jì)念日
- if(t/2%2==0)//設(shè)置變化的時(shí)間,默認(rèn)是2秒
- {
- if ( month_moon== 0x06 && day_moon== 0x02 ){ lcm_w_word("后天是 的生日"); }
- if ( month_moon== 0x06 && day_moon== 0x03 ){ lcm_w_word("明天是 的生日"); }
- if ( month_moon== 0x06 && day_moon== 0x04 ){ lcm_w_word("今天是 的生日"); }
- if ( month_moon== 0x10 && day_moon== 0x07 ){ lcm_w_word("后天是 的生日"); }
- if ( month_moon== 0x10 && day_moon== 0x08 ){ lcm_w_word("明天是 的生日"); }
- if ( month_moon== 0x10 && day_moon== 0x09 ){ lcm_w_word("今天是 的生日"); }
- if ( month_moon== 0x08 && day_moon== 0x01 ){ lcm_w_word("后天是 生日!"); }
- if ( month_moon== 0x08 && day_moon== 0x02 ){ lcm_w_word("明天是 生日!"); }
- if ( month_moon== 0x08 && day_moon== 0x03 ){ lcm_w_word("今天是 生日!"); }
-
- //農(nóng)歷節(jié)日
- else if ( month_moon== 0x12 && day_moon== 0x29 ){ lcm_w_word(" 明天大年 "); }
- if ( month_moon== 0x12 && day_moon== 0x30 ){ lcm_w_word(" 今天大年 "); }
- if ( month_moon== 0x05 && day_moon== 0x05 ){ lcm_w_word(" 今天是端午節(jié)"); }
- if ( month_moon== 0x08 && day_moon== 0x15 ){ lcm_w_word(" 今天是中秋節(jié)"); }
- if ( month_moon== 0x01 && day_moon== 0x15 ){ lcm_w_word(" 今天是元宵節(jié)"); }
- if ( month_moon== 0x02 && day_moon== 0x02 ){ lcm_w_word(" 今天是龍?zhí)ь^"); }
- if ( month_moon== 0x07 && day_moon== 0x07 ){ lcm_w_word(" 今天是七夕 "); }
- if ( month_moon== 0x07 && day_moon== 0x15 ){ lcm_w_word(" 今天是鬼節(jié)"); }
- if ( month_moon== 0x09 && day_moon== 0x09 ){ lcm_w_word(" 今天是重陽(yáng)節(jié)"); }
- if ( month_moon== 0x12 && day_moon== 0x08 ){ lcm_w_word(" 今天是臘八節(jié)"); }
- //二十四節(jié)氣
- else if (j==1){ lcm_w_word(" 今天小寒 "); }
- if (j==2){ lcm_w_word(" 今天大寒 "); }
- if (j==3){ lcm_w_word(" 今天立春 "); }
- if (j==4){ lcm_w_word(" 今天雨水 "); }
- if (j==5){ lcm_w_word(" 今天驚蟄 "); }
- if (j==6){ lcm_w_word(" 今天春分 "); }
- if (j==7){ lcm_w_word(" 今天清明 "); }
- if (j==8){ lcm_w_word(" 今天谷雨 "); }
- if (j==9){ lcm_w_word(" 今天立夏 "); }
- if (j==10){ lcm_w_word(" 今天小滿 "); }
- if (j==11){ lcm_w_word(" 今天芒種 "); }
- if (j==12){ lcm_w_word(" 今天夏至 "); }
- if (j==13){ lcm_w_word(" 今天小暑 "); }
- if (j==14){ lcm_w_word(" 今天大暑 "); }
- if (j==15){ lcm_w_word(" 今天立秋 "); }
- if (j==16){ lcm_w_word(" 今天處暑 "); }
- if (j==17){ lcm_w_word(" 今天白露 "); }
- if (j==18){ lcm_w_word(" 今天秋分 "); }
- if (j==19){ lcm_w_word(" 今天寒露 "); }
- if (j==20){ lcm_w_word(" 今天霜降 "); }
- if (j==21){ lcm_w_word(" 今天立冬 "); }
- if (j==22){ lcm_w_word(" 今天小雪 "); }
- if (j==23){ lcm_w_word(" 今天大雪 "); }
- if (j==24){ lcm_w_word(" 今天冬至 "); }
- //國(guó)立節(jié)日
- else if ( mo == 0x01 && dd == 0x01 ){ lcm_w_word(" 新年快樂(lè)! "); }//1月
- if ( mo == 0x01 && dd == 0x28 ){ lcm_w_word("今天是世界麻風(fēng)日"); }
-
- if ( mo == 0x02 && dd == 0x02 ){ lcm_w_word("今天是世界濕地日"); }//2月
- if ( mo == 0x02 && dd == 0x13 ){ lcm_w_word(" 明天情人節(jié)了 "); }
- if ( mo == 0x02 && dd == 0x14 ){ lcm_w_word(" 今天是情人節(jié) "); }
-
- if ( mo == 0x03 && dd == 0x01 ){ lcm_w_word("今天是國(guó)際海豹日"); }//3月
- if ( mo == 0x03 && dd == 0x03 ){ lcm_w_word("今天是全國(guó)愛(ài)耳日"); }
- if ( mo == 0x03 && dd == 0x08 ){ lcm_w_word("今天是3.8 婦女節(jié)"); }
- if ( mo == 0x03 && dd == 0x12 ){ lcm_w_word(" 今天是植樹節(jié) "); }
- if ( mo == 0x03 && dd == 0x14 ){ lcm_w_word("今天是國(guó)際警察日"); }
- if ( mo == 0x03 && dd == 0x15 ){ lcm_w_word("今天消費(fèi)者權(quán)益日"); }
- if ( mo == 0x03 && dd == 0x17 ){ lcm_w_word("今天是國(guó)際航海日"); }
- if ( mo == 0x03 && dd == 0x21 ){ lcm_w_word("今天是世界森林日"); }
- if ( mo == 0x03 && dd == 0x22 ){ lcm_w_word("今天是世界水日!"); }
- if ( mo == 0x03 && dd == 0x23 ){ lcm_w_word("今天是世界氣象日"); }
- if ( mo == 0x03 && dd == 0x24 ){ lcm_w_word("世界防治結(jié)核病日"); }
-
- if ( mo == 0x04 && dd == 0x01 ){ lcm_w_word("愚人節(jié),小心上當(dāng)"); }//4
- if ( mo == 0x04 && dd == 0x07 ){ lcm_w_word("今天是世界衛(wèi)生日"); }
- if ( mo == 0x04 && dd == 0x08 ){ lcm_w_word(" 今天復(fù)活節(jié) "); }
- if ( mo == 0x04 && dd == 0x13 ){ lcm_w_word(" 黑色星期五 "); }
-
- if ( mo == 0x05 && dd == 0x01 ){ lcm_w_word(" 今天是勞動(dòng)節(jié) "); }//5
- if ( mo == 0x05 && dd == 0x04 ){ lcm_w_word("今天是五四青年節(jié)"); }
- if ( mo == 0x05 && dd == 0x08 ){ lcm_w_word("今天世界紅十字日"); }
- if ( mo == 0x05 && dd == 0x12 ){ lcm_w_word("今天是國(guó)際護(hù)士節(jié)"); }
- if ( mo == 0x05 && dd == 0x05 ){ lcm_w_word(" 近日注意母親節(jié)"); }
- if ( mo == 0x05 && dd == 0x15 ){ lcm_w_word("今天是國(guó)際家庭日"); }
- if ( mo == 0x05 && dd == 0x31 ){ lcm_w_word("今天是世界無(wú)煙日"); }
-
- if ( mo == 0x06 && dd == 0x01 ){ lcm_w_word("今天是國(guó)際兒童節(jié)"); }//6
- if ( mo == 0x06 && dd == 0x05 ){ lcm_w_word("今天是世界環(huán)境日"); }
- if ( mo == 0x06 && dd == 0x26 ){ lcm_w_word("今天是國(guó)際禁毒日"); }
- if ( mo == 0x06 && dd == 0x06 ){ lcm_w_word("今天是全國(guó)愛(ài)眼日"); }
- if ( mo == 0x06 && dd == 0x13 ){ lcm_w_word(" 近日注意父親節(jié)"); }
- if ( mo == 0x06 && dd == 0x15 ){ lcm_w_word(" 近日注意父親節(jié)"); }
-
- if ( mo == 0x07 && dd == 0x01 ){ lcm_w_word(" 香港回歸記念日"); }//7
- if ( mo == 0x07 && dd == 0x07 ){ lcm_w_word(" 抗日戰(zhàn)爭(zhēng)記念日"); }
- if ( mo == 0x07 && dd == 0x11 ){ lcm_w_word("今天是世界人口日"); }
-
- if ( mo == 0x08 && dd == 0x01 ){ lcm_w_word("今天是八一建軍節(jié)"); }//8
- if ( mo == 0x08 && dd == 0x08 ){ lcm_w_word("今天是中國(guó)男子節(jié)"); }
- if ( mo == 0x08 && dd == 0x15 ){ lcm_w_word("抗戰(zhàn)勝利記念日!"); }
-
- if ( mo == 0x09 && dd == 0x10 ){ lcm_w_word(" 今天是教師節(jié) "); }//9
- if ( mo == 0x09 && dd == 0x18 ){ lcm_w_word("九·一八事變記念"); }
- if ( mo == 0x09 && dd == 0x20 ){ lcm_w_word("今天是國(guó)際愛(ài)牙日"); }
- if ( mo == 0x09 && dd == 0x27 ){ lcm_w_word("今天是世界旅游日"); }
-
- if ( mo == 0x10 && dd == 0x01 ){ lcm_w_word(" 今天是國(guó)慶節(jié) "); }//10
- if ( mo == 0x10 && dd == 0x04 ){ lcm_w_word("今天是世界動(dòng)物日"); }
- if ( mo == 0x10 && dd == 0x24 ){ lcm_w_word("今天是聯(lián)合國(guó)日!"); }
- if ( mo == 0x10 && dd == 0x12 ){ lcm_w_word("明天國(guó)際教師節(jié)!"); }
- if ( mo == 0x10 && dd == 0x13 ){ lcm_w_word("今天是國(guó)際教師節(jié)"); }
-
- if ( mo == 0x11 && dd == 0x10 ){ lcm_w_word("今天是世界青年節(jié)"); }//11
- if ( mo == 0x11 && dd == 0x17 ){ lcm_w_word("今天是世界學(xué)生節(jié)"); }
-
- if ( mo == 0x12 && dd == 0x01 ){ lcm_w_word("今天世界艾滋病日"); }//12
- if ( mo == 0x12 && dd == 0x06 ){ lcm_w_word(" 陽(yáng)歷生日快樂(lè) "); }
- if ( mo == 0x12 && dd == 0x23 ){ lcm_w_word(" 明晚平安夜 "); }
- if ( mo == 0x12 && dd == 0x24 ){ lcm_w_word(" 今晚平安夜 "); }
- if ( mo == 0x12 && dd == 0x25 ){ lcm_w_word(" 圣誕快樂(lè) "); }
- if ( mo == 0x12 && dd == 0x31 ){ lcm_w_word(" 明日新年 "); }
- }
- else{//非節(jié)日時(shí)顯示時(shí)晨信息
-
- if ( hh >= 0x04 && hh < 0x06 ){ lcm_w_word(" 凌晨 點(diǎn) 分 ");
- lcm_w_test(0,0x9b);
- if(hh1/10 != 0){lcm_w_test(1,(hh1/10)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,hh1%10+0x30);
- lcm_w_test(0,0x9d); //":"
- if(mm/16 != 0){lcm_w_test(1,(mm/16)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,mm%16+0x30); }
- if ( hh >= 0x06 && hh < 0x08 ){ lcm_w_word(" 早晨 點(diǎn) 分 ");
- lcm_w_test(0,0x9b);
- if(hh1/10 != 0){lcm_w_test(1,(hh1/10)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,hh1%10+0x30);
- lcm_w_test(0,0x9d); //":"
- if(mm/16 != 0){lcm_w_test(1,(mm/16)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,mm%16+0x30); }
- if ( hh >= 0x08 && hh < 0x12 ){ lcm_w_word(" 上午 點(diǎn) 分 ");
- lcm_w_test(0,0x9b);
- if(hh1/10 != 0){lcm_w_test(1,(hh1/10)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,hh1%10+0x30);
- lcm_w_test(0,0x9d); //":"
- if(mm/16 != 0){lcm_w_test(1,(mm/16)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,mm%16+0x30); }
- if ( hh == 0x12) { lcm_w_word(" 中午 點(diǎn) 分 ");
- lcm_w_test(0,0x9b);
- if(hh1/10 != 0){lcm_w_test(1,(hh1/10)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,hh1%10+0x30);
- lcm_w_test(0,0x9d); //":"
- if(mm/16 != 0){lcm_w_test(1,(mm/16)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,mm%16+0x30); }
- if ( hh >= 0x13 && hh < 0x18 ){ lcm_w_word(" 下午 點(diǎn) 分 ");
- lcm_w_test(0,0x9b);
- if(hh1/10 != 0){lcm_w_test(1,(hh1/10)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,hh1%10+0x30);
- lcm_w_test(0,0x9d); //":"
- if(mm/16 != 0){lcm_w_test(1,(mm/16)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,mm%16+0x30); }
- if ( hh >= 0x18 && hh < 0x22 ){ lcm_w_word(" 晚上 點(diǎn) 分 ");
- lcm_w_test(0,0x9b);
- if(hh1/10 != 0){lcm_w_test(1,(hh1/10)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,hh1%10+0x30);
- lcm_w_test(0,0x9d); //":"
- if(mm/16 != 0){lcm_w_test(1,(mm/16)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,mm%16+0x30); }
- if ( hh >= 0x22 && hh <= 0x23 ){ lcm_w_word(" 夜里 點(diǎn) 分 ");
- lcm_w_test(0,0x9b);
- if(hh1/10 != 0){lcm_w_test(1,(hh1/10)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,hh1%10+0x30);
- lcm_w_test(0,0x9d); //":"
- if(mm/16 != 0){lcm_w_test(1,(mm/16)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,mm%16+0x30); }
- if ( hh >= 0x00 && hh < 0x04 ){ lcm_w_word(" 深夜 點(diǎn) 分 ");
- lcm_w_test(0,0x9b);
- if(hh1/10 != 0){lcm_w_test(1,(hh1/10)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,hh1%10+0x30);
- lcm_w_test(0,0x9d); //":"
- if(mm/16 != 0){lcm_w_test(1,(mm/16)+0x30);} //十位消隱
- else{lcm_w_test(1,0x20);}//同上
- lcm_w_test(1,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); //跳過(guò)讀序列號(hào)
- ds1820wr(0x44); //啟動(dòng)溫度轉(zhuǎn)換
- ds1820rst();
- ds1820wr(0xcc); //跳過(guò)讀序列號(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;
- lcm_w_test(0,0x90); //顯示農(nóng)歷月
- if(yue==1){ lcm_w_word("正");}
- if(yue==2){ lcm_w_word("二");}
- if(yue==3){ lcm_w_word("三");}
- if(yue==4){ lcm_w_word("四");}
- if(yue==5){ lcm_w_word("五");}
- if(yue==6){ lcm_w_word("六");}
- if(yue==7){ lcm_w_word("七");}
- if(yue==8){ lcm_w_word("八");}
- if(yue==9){ lcm_w_word("九");}
- if(yue==10){ lcm_w_word("十");}
- if(yue==11){ lcm_w_word("冬");}
- if(yue==12){ lcm_w_word("臘");}
- lcm_w_test(0,0x91);
- lcm_w_word("月");
- lcm_w_test(0,0x92); //顯示農(nóng)歷日
- if(ri<=10)
- {
- if(ri==1){ lcm_w_word("初一");}
- if(ri==2){ lcm_w_word("初二");}
- if(ri==3){ lcm_w_word("初三");}
- if(ri==4){ lcm_w_word("初四");}
- if(ri==5){ lcm_w_word("初五");}
- if(ri==6){ lcm_w_word("初六");}
- if(ri==7){ lcm_w_word("初七");}
- if(ri==8){ lcm_w_word("初八");}
- if(ri==9){ lcm_w_word("初九");}
- if(ri==10){ lcm_w_word("初十");}
- }
- else
- {
- if(ri==11){ lcm_w_word("十一");}
- if(ri==12){ lcm_w_word("十二");}
- if(ri==13){ lcm_w_word("十三");}
- if(ri==14){ lcm_w_word("十四");}
- if(ri==15){ lcm_w_word("十五");}
- if(ri==16){ lcm_w_word("十六");}
- if(ri==17){ lcm_w_word("十七");}
- if(ri==18){ lcm_w_word("十八");}
- if(ri==19){ lcm_w_word("十九");}
- if(ri==20){ lcm_w_word("二十");}
- if(ri==21){ lcm_w_word("廿一");}
- if(ri==22){ lcm_w_word("廿二");}
- if(ri==23){ lcm_w_word("廿三");}
- if(ri==24){ lcm_w_word("廿四");}
- if(ri==25){ lcm_w_word("廿五");}
- if(ri==26){ lcm_w_word("廿六");}
- if(ri==27){ lcm_w_word("廿七");}
- if(ri==28){ lcm_w_word("廿八");}
- if(ri==29){ lcm_w_word("廿九");}
- if(ri==30){ lcm_w_word("三十");}
- }
- }
- /******************************************************************************
- void lcmjieqi()
- {
- uchar j;
- j=jieqi(yy,mo,dd);
- lcm_w_test(0,0x9e); //在屏幕第2行
- if (j==1){ lcm_w_word("小寒"); }
- if (j==2){ lcm_w_word("大寒"); }
- if (j==3){ lcm_w_word("立春"); }
- if (j==4){ lcm_w_word("雨水"); }
- if (j==5){ lcm_w_word("驚蟄"); }
- if (j==6){ lcm_w_word("春分"); }
- if (j==7){ lcm_w_word("清明"); }
- if (j==8){ lcm_w_word("谷雨"); }
- if (j==9){ lcm_w_word("立夏"); }
- if (j==10){ lcm_w_word("小滿"); }
- if (j==11){ lcm_w_word("芒種"); }
- if (j==12){ lcm_w_word("夏至"); }
- if (j==13){ lcm_w_word("小暑"); }
- if (j==14){ lcm_w_word("大暑"); }
- if (j==15){ lcm_w_word("立秋"); }
- if (j==16){ lcm_w_word("處暑"); }
- if (j==17){ lcm_w_word("白露"); }
- if (j==18){ lcm_w_word("秋分"); }
- if (j==19){ lcm_w_word("寒露"); }
- if (j==20){ lcm_w_word("霜降"); }
- if (j==21){ lcm_w_word("立冬"); }
- if (j==22){ lcm_w_word("小雪"); }
- if (j==23){ lcm_w_word("大雪"); }
- if (j==24){ lcm_w_word("冬至"); }
-
- }
- /****************************十二生肖顯示************************************/
- void lcmshengxiao()
- {
- uint y3;
- y3=(yy/16*10+yy%16+2000-1900)%12;
- if(year<6 & year1>6) y3--;
- switch(y3)
- {
- case 0: lcm_w_test(0,0x86);lcm_w_word("子鼠");
- break;
- case 1: lcm_w_test(0,0x86);lcm_w_word("丑牛");
- break;
- case 2: lcm_w_test(0,0x86);lcm_w_word("寅虎");
- break;
- case 3: lcm_w_test(0,0x86);lcm_w_word("卯兔");
- break;
- case 4: lcm_w_test(0,0x86);lcm_w_word("辰龍");
- break;
- case 5: lcm_w_test(0,0x86);lcm_w_word("巳蛇");
- break;
- case 6: lcm_w_test(0,0x86);lcm_w_word("午馬");
- break;
- case 7: lcm_w_test(0,0x86);lcm_w_word("未羊");
- break;
- case 8: lcm_w_test(0,0x86);lcm_w_word("申猴");
- break;
- case 9: lcm_w_test(0,0x86);lcm_w_word("酉雞");
- break;
- case 10: lcm_w_test(0,0x86);lcm_w_word("戌狗");
- break;
- case 11: lcm_w_test(0,0x86);lcm_w_word("亥豬");
- break;
- }
- }
- /************************* DS1302時(shí)鐘芯片驅(qū)動(dòng)程序*********************/
- //常用時(shí)鐘數(shù)據(jù)讀取
- void read_clockS(void){
- ss = read_clock(0x81);//讀取秒數(shù)據(jù)
- mm = read_clock(0x83);//讀取分鐘數(shù)據(jù)
- hh = read_clock(0x85);//小時(shí)
- dd = read_clock(0x87);//日
- mo = read_clock(0x89);//月
- xq = read_clock(0x8b);//星期
- yy = read_clock(0x8d);//年
- }
- /*****************************************************************************/
- //調(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;
- lcm_w_test(0,0x9a);
- lcm_w_word("調(diào)整");
- if(sel==6) {lcm_w_word("秒鐘");address=0x80; max=59;mini=0;} //秒7
- if(sel==5) {lcm_w_word("分鐘");address=0x82; max=59;mini=0;} //分鐘6
- if(sel==4) {lcm_w_word("小時(shí)");address=0x84; max=23;mini=0;} //小時(shí)5
- if(sel==3) {lcm_w_word("星期");address=0x8a; max=7;mini=1;} //星期4
- if(sel==2) {lcm_w_word("日期");address=0x86; max=31;mini=1;} //日3
- if(sel==1) {lcm_w_word("月份");address=0x88; max=12;mini=1;} //月2
- if(sel==0) {lcm_w_word("年份");address=0x8c; max=99; mini=0;} //年1
- //讀取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)程序(鬧鐘音樂(lè))
- /*****************************************************************************/
- 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; //音樂(lè)結(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; //音樂(lè)結(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; //音樂(lè)結(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);
- lcm_w_test(0,0x80);
- lcm_w_word("20");
- if(w==1&&e==0)
- {
- if(t/1%2==0)
- {
- lcm_w_test(0,0x81);
- lcm_w_test(1,(yy/16)+0x30);
- lcm_w_test(1,yy%16+0x30);
- }
- else
- {
- lcm_w_test(0,0x81);
- lcm_w_test(1,0x20);
- lcm_w_test(1,0x20);
- }
- }
- else
- {
- lcm_w_test(0,0x81);
- lcm_w_test(1,(yy/16)+0x30);
- lcm_w_test(1,yy%16+0x30);
- }
- } //}
- /*****************************************************************************/
- //向LCM中填寫 月 數(shù)據(jù)
- void lcm_w_mo(void){
- if(read_clock(0x89) != mo){
- mo = read_clock(0x89);
- if(w==1&&e==1)
- {
- if(t/1%2==0)
- {
- lcm_w_test(0,0x82);
- lcm_w_test(1,0x2f);
- lcm_w_test(1,(mo/16)+0x30); //十位消隱
- lcm_w_test(1,mo%16+0x30);
- lcm_w_test(1,0x2f);
- }
- else
- {
- lcm_w_test(0,0x82);
- lcm_w_test(1,0x2f);
- lcm_w_test(1,0x20); //十位消隱
- lcm_w_test(1,0x20);
- lcm_w_test(1,0x2f);
- }
- }
- else
- {
- lcm_w_test(0,0x82);
- lcm_w_test(1,0x2f);
- lcm_w_test(1,(mo/16)+0x30); //十位消隱
- lcm_w_test(1,mo%16+0x30);
- lcm_w_test(1,0x2f);
- }
- 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(w==1&&e==3)
- {
- if(t/1%2==0)
- {
- lcm_w_test(0,0x97);//寫入指定區(qū)域(97H 第二行第8個(gè)字)
- if(selx==7) {lcm_w_word("日");} //
- if(selx==6) {lcm_w_word("六");} //
- if(selx==5) {lcm_w_word("五");} //
- if(selx==4) {lcm_w_word("四");} //
- if(selx==3) {lcm_w_word("三");} //
- if(selx==2) {lcm_w_word("二");} //
- if(selx==1) {lcm_w_word("一");} //星期一
- }
- else
- {
- lcm_w_test(0,0x97); //寫入指定區(qū)域(97H 第二行第8個(gè)字)
- lcm_w_word(" ");
- }
- }
- else
- {
- lcm_w_test(0,0x97);//寫入指定區(qū)域(97H 第二行第8個(gè)字)
- if(selx==7) {lcm_w_word("日");} //
- if(selx==6) {lcm_w_word("六");} //
- if(selx==5) {lcm_w_word("五");} //
- if(selx==4) {lcm_w_word("四");} //
- if(selx==3) {lcm_w_word("三");} //
- if(selx==2) {lcm_w_word("二");} //
- if(selx==1) {lcm_w_word("一");} //星期一
- }
- lcm_w_test(0,0x95);
- lcm_w_word("星期");
- } //}
- /*****************************************************************************/
- //向LCM中填寫 日 數(shù)據(jù)
- void lcm_w_dd(void){
- // if(read_clock(0x87) != dd){
- dd = read_clock(0x87);
- if(w==1&&e==2)
- {
- if(t/1%2==0)
- {
- lcm_w_test(0,0x84);
- lcm_w_test(1,(dd/16)+0x30); //十位消隱
- lcm_w_test(1,dd%16+0x30);
- }
- else
- {
- lcm_w_test(0,0x84);
- lcm_w_test(1,0x20); //十位消隱
- lcm_w_test(1,0x20);
- }
- }
- else
- {
- lcm_w_test(0,0x84);
- lcm_w_test(1,(dd/16)+0x30); //十位消隱
- lcm_w_test(1,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í)音
- }
- }
- if(w==1&&e==4)
- {
- if(t/1%2==0)
- {
- lcm_w_test(0,0x88);
- lcm_w_test(1,(hh/16)+0x30);
- lcm_w_test(1,hh%16+0x30);
- hh1=hh/16*10+hh%16;
- }
- else
- {
- lcm_w_test(0,0x88);
- lcm_w_test(1,0x20);
- lcm_w_test(1,0x20);
- hh1=hh/16*10+hh%16;
- }
- }
- else
- {
- lcm_w_test(0,0x88);
- lcm_w_test(1,(hh/16)+0x30);
- lcm_w_test(1,hh%16+0x30);
- hh1=hh/16*10+hh%16;
- }
-
- }
- /*****************************************************************************/
- //向LCM中填寫 分鐘 數(shù)據(jù)
- void lcm_w_mm(void){
- if(read_clock(0x83) != mm)
- {
- mm = read_clock(0x83);
- }
- if(w==1&&e==5)
- {
- if(t/1%2==0)
- {
- lcm_w_test(0,0x89);
- lcm_w_test(1,0x3a); //":"
- lcm_w_test(1,0x20);
- lcm_w_test(1,0x20);
- lcm_w_test(1,0x3a); //":"
- }
- else
- {
- lcm_w_test(0,0x89);
- lcm_w_test(1,0x3a); //":"
- lcm_w_test(1,(mm/16)+0x30);
- lcm_w_test(1,mm%16+0x30);
- lcm_w_test(1,0x3a); //":"
- }
- }
- if(w==1&&e!=5)
- {
- lcm_w_test(0,0x89);
- lcm_w_test(1,0x3a); //":"
- lcm_w_test(1,(mm/16)+0x30);
- lcm_w_test(1,mm%16+0x30);
- lcm_w_test(1,0x3a); //":"
- }
- if(w!=1)
- {
- lcm_w_test(0,0x89);
- if(t/1%2==0) lcm_w_test(1,0x3a); //":"
- else{lcm_w_test(1,0x20);}
- lcm_w_test(1,(mm/16)+0x30);
- lcm_w_test(1,mm%16+0x30);
- if(t/1%2==0) lcm_w_test(1,0x3a); //":"
- else{lcm_w_test(1,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)
- {
- write_com(0x8c);
- lcm_w_word(" -");
- }
- if(temper_bai==0x30) temper_bai=0x20;
- write_com(0x8d);
- write_data(temper_bai);
- write_data(temper_shi);
- write_data('.');
- write_data(temper_ge);
-
- lcm_w_word("℃");
- }
- /*------------------顯示圖片------------------------*/
- void Disp_Img(unsigned char code *img)
- { unsigned int j=0;
- unsigned char x,y,i;
- for(i=0;i<9;i+=8)
- for(y=0;y<32;y++)/*原來(lái) 為 y<26 ,上下兩個(gè)半屏不能正常對(duì)接顯示,導(dǎo)致顯示的圖片中間有空隙*/
- for(x=0;x<8;x++)
- { write_com(0x36);//功能設(shè)置---8BIT控制界面,擴(kuò)充指令集
- write_com(y+0x80); //行地址
- write_com(x+0x80+i); //列地址
- write_com(0x30);
- write_data(img[j++]); //寫數(shù)據(jù)還要回到基本指令集
- write_data(img[j++]);
- }
-
- }
- /***************************處理顯示函數(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++)
- {
- write_com(0x80+i);
- write_com(0x90+add);
- write_data(tab[dat][j++]);
- write_data(tab[dat][j++]);
- }
- for(i=0;i<16;i++)
- {
- write_com(0x80+i);
- write_com(0x88+add);
- write_data(tab[dat][j++]);
- write_data(tab[dat][j++]);
- }
- }
- /************************初始化函數(shù)(被調(diào)用層) **************************/
- void init_dz()
- {
- write_com(0x30); //選擇8bit數(shù)據(jù)流,基本指令集
- write_com(0x0c); //開顯示(無(wú)游標(biāo)、不反白)
- write_com(0x01); //清除顯示,并且設(shè)定地址指針為00H
- write_com(0x82); //設(shè)置指針
- lcm_w_word("年 月 日");
- write_com(0x98); //設(shè)置指針
- lcm_w_word("星期");
- write_com(0x81); //處理年,并顯示
- yy = read_clock(0x8d);
- deal(yy);
- write_data(shi+0x30);
- write_data(ge+0x30);
- //處理月,并顯示
- write_com(0x83);
- mo = read_clock(0x89);
- deal(mo);
- write_data(shi+0x30);
- write_data(ge+0x30);
-
- write_com(0x85); //處理日,并顯示
- dd = read_clock(0x87);
- deal(dd);
- write_data(shi+0x30);
- write_data(ge+0x30);
-
- write_com(0x9a); //處理星期,并顯示
- xq = read_clock(0x8b);
- switch(xq)
- {
- case 1:lcm_w_word("一");break;
- case 2:lcm_w_word("二");break;
- case 3:lcm_w_word("三");break;
- case 4:lcm_w_word("四");break;
- case 5:lcm_w_word("五");break;
- case 6:lcm_w_word("六");break;
- case 7:lcm_w_word("日");break;
- default:break;
- }
- write_com(0x9f);
- lcm_w_word("℃");
-
- write_com(0x36); //啟動(dòng)擴(kuò)充指令集,啟動(dòng)繪圖模式
- clear_img(); //清理圖片緩沖區(qū)
-
- hh = read_clock(0x85); //處理小時(shí),并顯示
- deal(hh);
- display(0,shi);
- display(1,ge);
- display(2,10);
- mm = read_clock(0x83); //處理分鐘,并顯示
- deal(mm);
- display(3,shi);
- display(4,ge);
- display(5,10);
- ss = read_clock(0x81); //處理秒,并顯示
- deal(ss);
- display(6,shi);
- display(7,ge);
- }
- /*****************************在12864上顯示時(shí)間*************************/
- void disp_sfm()
- {
- uint temper;
- uchar temper_ge,temper_shi,temper_bai,day_temp,date_temp,month_temp,year_temp;
- write_com(0x36); //啟動(dòng)擴(kuò)充指令集,啟動(dòng)繪圖模式
- ss = read_clock(0x81); //更新數(shù)據(jù)
- if(sec_temp!=ss) //讀取秒,只要有改變液晶顯示也改變
- {
- sec_temp=ss;
- deal(sec_temp);
- if(secl!=shi)
- {
- secl=shi;
- display(6,secl);
- }
- display(7,ge);
- }
- mm = read_clock(0x83); //讀取分,只要有改變液晶顯示也改變
- if(min_temp!=mm)
- {
- min_temp=mm;
- deal(mm);
- display(3,shi);
- display(4,ge);
- }
- hh = read_clock(0x85); //讀取小時(shí),只要有改變液晶顯示也改變
- if(hour_temp!=hh)
- {
- hour_temp=hh;
- deal(hh);
- display(0,shi);
- display(1,ge);
- }
-
- if(ge/1%2==0)
- {
- display(2,10);
- display(5,10);
- }
- else
- {
- display(2,11);
- display(5,11);
- }
-
- write_com(0x30);
- dd = read_clock(0x87); //讀取日,只要有改變液晶顯示也改變
- if(date_temp!=dd)
- {
- date_temp=dd;
- //write_com(0x30);
- deal(dd);
- write_com(0x85);
- write_data(shi+0x30);
- write_data(ge+0x30);
- //write_com(0x36);
- }
- mo = read_clock(0x89); //讀取月,只要有改變液晶顯示也改變
- if(month_temp!=mo)
- {
- month_temp=mo;
- //write_com(0x30);
- write_com(0x83);
- deal(mo);
- write_data(shi+0x30);
- write_data(ge+0x30);
- //write_com(0x36);
- }
- yy = read_clock(0x8d); //讀取年,只要有改變液晶顯示也改變
- if(year_temp!=yy)
- {
- year_temp=yy;
- //write_com(0x30);
- write_com(0x81);
- deal(yy);
- write_data(shi+0x30);
- write_data(ge+0x30);
- //write_com(0x36);
- }
- xq = read_clock(0x8b); //讀取星期,只要有改變液晶顯示也改變
- if(day_temp!=xq)
- {
- day_temp=xq;
- //write_com(0x30);
- write_com(0x9a);
- switch(xq)
- {
- case 1:lcm_w_word("一");break;
- case 2:lcm_w_word("二");break;
- case 3:lcm_w_word("三");break;
- case 4:lcm_w_word("四");break;
- case 5:lcm_w_word("五");break;
- case 6:lcm_w_word("六");break;
- case 7:lcm_w_word("日");break;
- default:break;
- }
- }
- temper=read_temp(); //讀取溫度
- temper_ge=temper%10+0x30;
- temper_shi=temper%100/10+0x30;
- temper_bai=temper/100+0x30;
- if(tflag==1)
- {
- write_com(0x9c);
- lcm_w_word(" -");
- }
- //else
- //{
- //write_com(0x9c);
- //lcm_w_word(" +");
- //}
- if(temper_bai==0x30) temper_bai=0x20;
- write_com(0x9d);
- write_data(temper_bai);
- write_data(temper_shi);
- write_data('.');
- write_data(temper_ge);
-
- write_com(0x36);
-
- }
- /********************************************************** *******************/
- //鬧鐘
- void naozhong (void)
- {
- lcm_clr();//清屏
- lcm_w_test(0,0x80);
- lcm_w_word(" 鬧鐘設(shè)置 鬧鐘 ");
- //----------|-------1-------|-------3-------|-------2-------|-------4-------|-----//標(biāo)尺
- if(n==0) {lcm_w_test(0,0x8f);lcm_w_word("關(guān)");} //
- if(n==1) {lcm_w_test(0,0x8f);lcm_w_word("開");} //
- while(1)
- {
- if (KEY_3 == 0) // 設(shè)置時(shí)間
- {
- DelayM(20); //去抖
- if(KEY_3 == 0 && w == 0)
- {
- Beep_key();//按鍵音
- n++;
- if (n >= 2 ){n = 0;}
- if(n==0) {lcm_w_test(0,0x8f);lcm_w_word("關(guān)");} //
- if(n==1) {lcm_w_test(0,0x8f);lcm_w_word("開");} //
- while(KEY_3 == 0);//等待鍵松開
- }
- }
- if (KEY_2 == 0) //
- {
- DelayM(20); //去抖
- if(KEY_2 == 0 && w == 0)
- {
- Beep_key(); //按鍵音
- while(KEY_2 == 0); //等待鍵松開
- n1++;
- if (n1 >= 24 ){n1 = 0;}
- }
- }
- if (KEY_4 == 0) //
- {
- DelayM(20); //去抖
- if(KEY_4 == 0 && w == 0)
- {
- Beep_key(); //按鍵音
- while(KEY_4 == 0); //等待鍵松開
- n2++;
- if (n2>= 60 ){n2 = 0;}
- }
- }
- lcm_w_test(0,0x8b);
- lcm_w_test(1,(n1/10)+0x30);
- lcm_w_test(1,n1%10+0x30);
- lcm_w_test(1,0x3a); //":"
- lcm_w_test(1,(n2/10)+0x30);
- lcm_w_test(1,n2%10+0x30);
- if(KEY_1 == 0 && w == 0)
- {
- Beep_key(); //按鍵音
- while(KEY_1 == 0); //等待鍵松開
- lcm_clr(); //清屏
- break;
- }
- }
-
- }
- /*****************************************************************************/
- //刷新數(shù)據(jù)
- void updata (void){
- lcm_w_ss();//刷新 秒
- lcm_w_mm();//刷新 分
- lcm_w_hh();//刷新 小時(shí)
- lcm_w_dd();//刷新 日
- lcm_w_xq();//更新星期值
- lcm_w_mo();//刷新 月
- lcm_w_yy();//刷新 年
- ss = read_clock(0x81); //更新數(shù)據(jù)
- t=ss/16*10+ss%16;
- lcmnongli();
- lcmshengxiao();
- disp_temper();
- if(w == 0)
- {
- days (); //節(jié)日顯示
- }
- if (n==1)
- {
- lcm_w_test(0,0x85); //秒值在LCM上的寫入位置
- lcm_w_test(1,0x20);
- lcm_w_test(1,0x0e);
- }
- else{
- lcm_w_test(0,0x85); //秒值在LCM上的寫入位置
- lcm_w_test(1,0x20);
- lcm_w_test(1,0x20);
- }
- }
- /*****************************************************************************/
- //向LCM中填寫 秒 數(shù)據(jù)
- void lcm_w_ss(void)
- {
- unsigned int i=0;
- unsigned char a=0,b=0,c=0;
- if(read_clock(0x81) != ss){ //判斷是否需要更新
- ss = read_clock(0x81); //更新數(shù)據(jù)
- if(w==1&&e==6)
- {
- if(t/1%2==0)
- {
- lcm_w_test(0,0x8b); //秒值在LCM上的寫入位置
- lcm_w_test(1,(ss/16)+0x30); //寫十位
- lcm_w_test(1,ss%16+0x30); //寫個(gè)位
- }
- else
- {
- lcm_w_test(0,0x8b); //秒值在LCM上的寫入位置
- lcm_w_test(1,0x20); //寫十位
- lcm_w_test(1,0x20); //寫個(gè)位
- }
- }
- else
- {
- lcm_w_test(0,0x8b); //秒值在LCM上的寫入位置
- lcm_w_test(1,(ss/16)+0x30); //寫十位
- lcm_w_test(1,ss%16+0x30); //寫個(gè)
- }
- }
- }
- /*****************************************************************************/
- void welcome(void){
- lcm_w_word1("12864液晶多功能萬(wàn)年歷 ");
- //----------|-------1-------|-------3-------|-------2-------|-------4-------|-----//標(biāo)尺
- }
- /**************************************************************************/
- void Delay1ms(unsigned int count)
- {
- unsigned int i,j;
- for(i=0;i<count;i++)
- for(j=0;j<120;j++);
- }
-
- //*****************************Music************************************/
- //我和你
- unsigned char code Music_wo[]={ 0x17,0x02, 0x19,0x02, 0x15,0x01, 0x16,0x02, 0x17,0x02,
- 0x0F,0x01, 0x15,0x02, 0x16,0x02, 0x17,0x02, 0x19,0x02,
- 0x16,0x00, 0x17,0x02, 0x19,0x02, 0x15,0x01, 0x16,0x02,
- 0x17,0x02, 0x10,0x01, 0x16,0x02, 0x0F,0x02, 0x16,0x02,
- 0x17,0x02, 0x15,0x00, 0x1A,0x01, 0x19,0x01, 0x1A,0x01,
- 0x15,0x01, 0x17,0x02, 0x10,0x02, 0x17,0x66, 0x19,0x03,
- 0x16,0x00, 0x17,0x02, 0x19,0x02, 0x15,0x01, 0x16,0x02,
- 0x17,0x02, 0x10,0x01, 0x16,0x02, 0x0F,0x02, 0x16,0x02,
- 0x17,0x02, 0x15,0x00, 0x00,0x00 };
- unsigned char code Music_lz[]={ 0x0F,0x03, 0x0F,0x03, 0x10,0x02, 0x0F,0x02, 0x15,0x02,
- 0x11,0x01, 0x0F,0x03, 0x0F,0x03, 0x10,0x02, 0x0F,0x02,
- 0x16,0x02, 0x15,0x01, 0x0F,0x03, 0x0F,0x03, 0x19,0x02,
- 0x17,0x02, 0x15,0x02, 0x11,0x02, 0x10,0x02, 0x18,0x03,
- 0x18,0x03, 0x17,0x02, 0x15,0x02, 0x16,0x02, 0x15,0x01,
- 0x00,0x00 };
- /*****************************************************************************/
- //---主程序---//
- /*****************************************************************************/
- main()
- {
- KEY_1 = 1;KEY_2 = 1;KEY_3 = 1;KEY_4 = 1; //初始鍵盤
- yy=0xff;mo=0xff;dd=0xff;xq=0xff;hh=0xff;mm=0xff;ss=0xff; //各數(shù)據(jù)刷新
- Beep();
- InitialSound();
- Init_1302();
- lcm_init(); //初始化液晶顯示器
- lcm_clr(); //清屏
- welcome() ; //顯示歡迎信息
- DelayM(500); //顯示等留1秒
- lcm_clr(); //清屏
- Disp_Img(BMP1);
- Play(Music_lz,0,3,360);
- lcm_clr(); //清屏
- c_sun=0;
- /*****************************************************************************/
- while(1)
- {//主循環(huán)
- updata (); //刷新數(shù)據(jù)
- //------------------------------------------------------------------
- if (KEY_3 == 0) // 設(shè)置時(shí)間
- {
- DelayM(20); //去抖
- if(KEY_3 == 0 && w == 1) //當(dāng)是調(diào)時(shí)狀態(tài) 本鍵用于調(diào)整下一項(xiàng)
- {
- Beep_key(); //按鍵音
- e++;
- if (e >= 7 ){e = 0;}
- Set_time(e); //調(diào)整
- }
- if(KEY_3 == 0 && w == 0) //當(dāng)是正常狀態(tài)時(shí)就進(jìn)入調(diào)時(shí)狀態(tài)
- {
- Beep_set(); //確定按鍵音
- lcm_clr(); //清屏
- w=1; //進(jìn)入調(diào)時(shí)
- Set_time(e); //調(diào)整
- }
- while(KEY_3 == 0); //等待鍵松開
- }
- //------------------------------------------------------------------
- if (KEY_1 == 0) // 當(dāng)在調(diào)時(shí)狀態(tài)時(shí)就退出調(diào)時(shí)
- {
- DelayM(20);
- if(KEY_1 == 0 && w == 1)
- {
- Beep_set(); //確定按鍵音
- w = 0; //退出調(diào)時(shí)
- e = 0; //“下一項(xiàng)”計(jì)數(shù)器清0
- }
- if(KEY_1 == 0 && w == 0)
- {
- Beep_key(); //按鍵音
- lcm_clr(); //清屏
- Disp_Img(BMP1); //顯示圖片
- Play(Music_wo,0,3,360); //播放音樂(lè)
- }
- lcm_clr(); //清屏
- updata (); //刷新數(shù)據(jù)
- while(KEY_1 == 0); //等待鍵松開
- }
- //------------------------------------------------------------------
- if (KEY_2 == 0 && w == 1) // 加減調(diào)整
- {
- DelayM(20);
- if(KEY_2 == 0 && w == 1)
- {
- Beep_key(); //按鍵音
- Set_time(e); //調(diào)整
- }
- while(KEY_2 == 0); //等待鍵松開
- }
- if (KEY_2 == 0 && w == 0)
- {
- DelayM(20);
- if(KEY_2 == 0 && w == 0)
- {
- Beep_key();//按鍵音
- while(KEY_2 == 0); //等待鍵松開
- naozhong(); //進(jìn)入鬧鐘設(shè)置程序
- }
- while(KEY_2 == 0); //等待鍵松開
- }
- //------------------------------------------------------------------
- if (KEY_4 == 0 && w == 1) // 加減調(diào)整
- {
- DelayM(20);
- if(KEY_4 == 0 && w == 1)
- {
- Beep_key(); //按鍵音
- Set_time(e); //調(diào)整
- }
- while(KEY_4 == 0); //等待鍵松開
- }
- if (KEY_4 == 0 && w == 0)
- {
- DelayM(20);
- if(KEY_4 == 0 && w == 0)
- {
- Beep_key(); //按鍵音
- lcm_clr(); //清屏
- clear_img();
- init_dz(); //清理圖片緩沖區(qū)
- while(KEY_4 == 0); //等待鍵松開
- while(1)
- {
- disp_sfm();
- if (KEY_4 == 0)
- {
- Beep_key(); //按鍵音
- lcm_init(); //初始化液晶顯示器
- updata (); //刷新數(shù)據(jù)
- while(KEY_4 == 0); //等待鍵松開
- break;
- }
- }
-
- }
- }
- if(n==1)
- {
- hh1=hh/16*10+hh%16;
- mm1=mm/16*10+mm%16;
- if(n1==hh1 && n2==mm1 && ss==0)
- {
- lcm_clr();//清屏
- lcm_w_test(0,0x80);
- lcm_w_word(" 鬧鐘時(shí)間到!");
- //----------|-------1-------|-------3-------|-------2-------|-------4-------|-----//標(biāo)尺
- lcm_w_test(0,0x89);
- lcm_w_test(1,(n1/10)+0x30);
- lcm_w_test(1,n1%10+0x30);
- lcm_w_word("點(diǎn)");
- lcm_w_test(1,(n2/10)+0x30);
- lcm_w_test(1,n2%10+0x30);
- lcm_w_word("分 ");
- lcm_w_test(1,0x02);
- Play(Music_wo,0,3,360);
- lcm_clr(); //清屏
- updata (); //刷新數(shù)據(jù)
- }
- }
- }
- }
復(fù)制代碼
所有資料51hei提供下載:
實(shí)驗(yàn)三.doc
(333 KB, 下載次數(shù): 94)
2018-10-15 14:12 上傳
點(diǎn)擊文件名下載附件
下載積分: 黑幣 -5
|