|
- #include<reg52.h>
- #include<math.h>
- #define uint unsigned int
- #define uchar unsigned char
- sbit lcden=P2^0;
- sbit lcdrw=P2^1;
- sbit lcdrs=P2^2;
- sbit DQ = P2^3;
- sbit s1=P1^0;
- sbit s2=P1^1;
- sbit s3=P1^2;
- sbit D1=P3^4;
- sbit D2=P3^5;
- uchar num,fig,s1num,figh,figl,t,temp_value;
- char h,l;
- void delay(uint z);
- void init();
- void write_com(uchar com);
- void write_data(uchar date);
- void keyscan();
- void write_hl(uchar add,char date);
- void write_temp_value(uchar add,char date);
- void delay_18B20(unsigned int i);
- void Init_DS18B20(void);
- unsigned char ReadOneChar(void);
- void WriteOneChar(uchar dat);
- void ReadTemp(void);
- void comp();
- void string(uchar ad,uchar *s);
- void main()
- {
- init();
- Init_DS18B20();
- while(1)
- { if(s1==0||s1num>=1)
- { keyscan();
- }
- else{ ReadTemp();
- write_temp_value(0,temp_value);
- }
- comp();
- }
- }
- void delay(uint z)
- {
- uint x,y;
- for(x=z;x>0;x--)
- for(y=110;y>0;y--);
- }
- void string(uchar ad,uchar *s)
- {
- write_com(ad);
- while(*s>0)
- {
- write_data(*s++);
- delay(100);
- }
- }
- void init() //LCD初始化程序
- { lcden=0;
- lcdrw=0;
- write_com(0x38); //设置16x2 显示5x7 点阵,8 位数据接口
- write_com(0x0c); //设置开始显示不显示光标
- write_com(0x06); //写一个字符后地址指针加1
- write_com(0x01); //显示清零数据指针清零
- write_com(0x80); //将数据指针第一行第一个字处,
-
- write_com(0x89); //定义当前指针位置
- string(0x89,"H:+28.6");
- write_com(0x80+9+0x40); //定义当前指针位置
- string(0x80+9+0x40,"L:+15.3");
- h=28.6; //h=+20
- l=15.3; //l=+10
- D1=1;
- D2=1;
- figh=0; //给正确初始值,便于上电比较
- figl=1; //给正确初始值,便于上电比较
- }
- void write_com(uchar com) //写命令程序
- { lcdrs=0;
- P0=com;
- delay(5);
- lcden=1;
- delay(5);
- lcden=0;
- }
- void write_data(uchar date) //写数据程序
- { lcdrs=1; //设置为写入数据
- P0=date; //将数据赋给P0 口
- delay(5); //延时
- lcden=1; //打开LCD使能,输入一个高脉冲
- delay(5); //延时
- lcden=0; //置低完成高脉冲
- }
- void write_temp_value(uchar add,char date) //读取的温度值在LCD上显示程序
- { uchar bai,shi,ge,min;
- bai=date*10/1000;
- shi=date*10/100%10;
- ge=date*10/10%10;
- min=date*10%10; //分离出百,十,个位数
- if((bai|shi|ge)==0) //如果百十都等于0
- shi=0x70; //十赋值0x70,以便十位写入空字符,write_data(0x30+shi),参考1602字符图形码
- if(bai==0)
- bai=0x70;
- write_com(0x80+add); //设置当前光标位置,准备写数据
-
- if(fig==0&&shi!=0x70) //如果温度为负且十位不等于0(如果十位等于0,shi=0x70)
- { write_data('-'); //在百位写入负号
- write_data(0x40+shi); //写入十位数据
- }
- if(fig==0&&shi==0x70) //如果温度为负且百十位都等于0
- { write_data(0x30+0x70); //在百位写入一个空字符
- write_data('-'); //在十位写入负号
- }
- if(fig==1)write_data(0x30+bai); //温度正,写入百位数据
- if(fig==1)write_data(0x30+shi); //温度正,写入十位数据
- if(fig==1)write_data(0x30+ge); //写入个位数据
- write_data('.');
- write_data(0x30+min); //写小数点
- write_data(0xdf); //写入°
- write_data('C'); //写入C
-
- }
- void write_hl(uchar add,char date) //设置的高低温度值在LCD上显示程序
- { uchar bai,shi,ge,min;
- bai=date/1000;
- shi=date/100%10;
- ge=date/10%10;
- min=date%10; //分离出百,十,个位数
- write_com(0x80+add); //设置当前光标位置,准备写数据
-
- if(t==1&&shi!=0) //如果温度为负且十位不等于0(如果十位等于0,shi=0x70) 负数:百位第1种情况,写-
- { write_data('-');} //在百位写入负号
- if(t==1&&shi==0) //如果温度为负且百十位都等于0 负数:百位第2种情况,写空
- { write_data(0x30+0x70); //在百位写入一个空字符
- write_data('-'); //在十位写入负号 负数:十位第1种情况,写-
- }
- if(t==1&&shi!=0) //如果温度为负且十不等于0 负数:十位第2种情况,写数
- {write_data(0x30+shi);} //在十位写入数据
- if(t==0&&bai==0&&shi!=0) //否则温度为正,如果bai=0且shi!=0 正数:百位第1种情况,写+
- {write_data('+');} //在百位写入+
- if(t==0&&bai==0&&shi==0) //否则温度为正,如果bai=0且shi=0 正数:百位第2种情况,写空
- {write_data(0x30+0x70);} //在百位写入一个空字符
- if(t==0&&bai!=0)
- {write_data(0x30+bai);} //否则百位为正不等于0,写入百位数 正数:百位第3种情况,写数
- if(t==0&&bai==0&&shi==0&&ge!=0) //如果百十等于0,个不等于0 正数:十位第1种情况,写+
- {write_data('+');} //在十位写入+
- if(t==0&&bai==0&&shi==0&&ge==0) //如果百十个都等于0
- {write_data(' ');} //在十位写入空字符 正数:十位第2种情况,写空
- if(t==0&&shi!=0)
- {write_data(0x30+shi);}
- write_data(0x30+min); //在十位写入数 正数:十位第3种情况,写数
- write_data(0x30+ge); //写入个位数据
- }
- /***********ds18b20子程序*************************/
- /***********ds18b20延迟子函数(晶振12MHz )*******/
- void delay_18B20(unsigned int i)
- {
- while(i--);
- }
- void Init_DS18B20(void) //ds18b20初始化函数
- {
- unsigned char x=0;
- DQ = 1;
- delay_18B20(8);
- DQ = 0;
- delay_18B20(80);
- DQ = 1;
- delay_18B20(14);
- x=DQ;
- delay_18B20(20);
- }
- unsigned char ReadOneChar(void) // ds18b20读一个字节
- {
- uchar i=0;
- uchar dat = 0;
- for (i=8;i>0;i--)
- {
- DQ = 0; // 给脉冲信号
- dat>>=1;
- DQ = 1; // 给脉冲信号
- if(DQ)
- dat|=0x80;
- delay_18B20(4);
- }
- return(dat);
- }
- void WriteOneChar(uchar dat) //ds18b20写一个字节
- {
- unsigned char i=0;
- for (i=8; i>0; i--)
- {
- DQ = 0;
- DQ = dat&0x01;
- delay_18B20(5);
- DQ = 1;
- dat>>=1;
- }
- }
- void ReadTemp(void) //读取ds18b20当前温度
- {
- unsigned char a=0;
- unsigned char b=0;
- unsigned char t=0;
- Init_DS18B20();
- WriteOneChar(0xCC);
- WriteOneChar(0x44);
- delay_18B20(100);
- Init_DS18B20();
- WriteOneChar(0xCC);
- WriteOneChar(0xBE);
- delay_18B20(100);
- a=ReadOneChar();
- b=ReadOneChar();
- // a=0xff;
- // b=0xfe;
- temp_value=b<<4;
- temp_value+=(a&0xf0)>>4;
- fig=0x01;
- if(temp_value>0x7f)
- {fig=0;
- a=~a+1;
- b=~b;
- temp_value=b<<4;
- temp_value+=(a&0xf0)>>4;
- temp_value*=0.625;
- }
- }
- void keyscan() //按键扫描
- { if(s1==0) //如果s1按下,执行下面程序
- { delay(5); // 延时一会
- if(s1==0) //如果s1确实按下,执行下面程序
- { s1num++; //s1num自加1
- while(!s1); //如果s1松开,执行下面程序,否则一直停在这
- if(s1num==1) //如果s1只按一次,执行下面
- {
- write_com(0x80+13); //设置当前指针位置
- write_com(0x0f); //写入光标闪烁命令
- }
- if(s1num==2) //如果s1按2次,执行下面
- {
- write_com(0x80+0x40+13); //设置当前指针位置,光标闪
- }
- if(s1num==3) //如果s1按3次,执行下面
- { s1num=0; //s1num清0
- write_com(0x0c); //写入光标不闪烁命令
- }
- }
- }
-
- if(s2==0) //如果s2按下,执行下面程序
- { delay(5); //延时
- if(s2==0); //如果s2按下,执行下面程序
- {
- while(!s2); //如果s2松开,执行下面程序,否则一直停在这
- if(s1num==1) //如果光标在h的位置闪烁,执行下面程序
- { h++; //h加1
- if(h==127) //=127清0
- h=0;
- figh=0; //设置figh=0,符号为正
- t=figh; //赋值给t,以便液晶显示
- if(h<=-1) //如果h为负数
- {figh=1; //设置figh=0
- t=figh; //赋值给t,以便液晶显示
- h=abs(h); //h取绝对值
- write_hl(11,h); //h写入LCD
- h=0-h; //把h变回原来的负数
- }
- else{write_hl(11,h);} //否则h写入LCD
- write_com(0x80+13); //光标在温度值位置闪烁
- }
- if(s1num==2) //如果光标在l的位置闪烁,执行下面程序
- { l++;
- if(l==127)
- l=0;
- figl=0;
- t=figl;
- if(l<=-1)
- {figl=1;
- t=figl;
- l=abs(l);
- write_hl(0x40+11,l);
- l=0-l;
- }
- else{write_hl(0x40+11,l);}
- write_com(0x80+0x40+13);
- }
- }
- }
- if(s3==0) //如果s3按下,执行下面程序
- { delay(5); //延时
- if(s3==0);
- {
- while(!s3); //s3松开后,执行下面程序
- if(s1num==1) //如果光标在h的位置闪烁,执行下面程序
- { h--; //h自减1
- if(h==-55) //如果h=-55清0
- h=0;
- figh=0; //设置figh=0,温度值为正
- t=figh; //赋值给t,以便液晶显示
- if(h<=-1) //如果h温度值为负数
- {figh=1; //设置figh=1
- t=figh; //赋值给t,以便液晶显示
- h=abs(h); //h取绝对值
- write_hl(11,h); //h写入LCD
- h=0-h; //把h变回原来的负数
- }
- else{write_hl(11,h);} //否则h写入LCD
- write_com(0x80+13); //光标在温度值位置闪烁
- }
- if(s1num==2)
- { l--;
- if(l==-55)
- h=0;
- figl=0;
- t=figl;
- if(l<=-1)
- {figl=1;
- t=figl;
- l=abs(l);
- write_hl(0x40+11,l);
- l=0-l;
- }
- else{write_hl(0x40+11,l);}
- write_com(0x80+0x40+13);
- }
- }
- }
- }
- void comp() //温度值报警程序
- {if(fig==1&&temp_value>=h)
- D1=0;
- if(fig==1&&temp_value<=h)
- D1=1;
- if(fig==0) //如果读取温度值为负
- { if(figh==0) //如果设置最高值温度值为正
- D1=1;
- if(figh==1) //如果设置最高值温度值为负
- {h=abs(h);
- if(temp_value<=h)
- D1=0;
- if(temp_value>=h)
- D1=1;
- h=-h;
- }
- }
- if(fig==1&&temp_value<=l)
- D2=0;
- if(fig==1&&temp_value>=l)
- D2=1;
- if(fig==0)
- { if(figl==0)
- D2=0;
- if(figl==1)
- {l=abs(l);
- if(temp_value>=l)
- D2=0;
- if(temp_value<=l)
- D2=1;
- l=-l;
- }
- }
- }
复制代码 |
|