我想把温度值用12864显示出来,但是温度变量的值不显示,请各位大神帮忙看看。
程序如下
#include <stc12c5a60s2.h>
#include <stdio.h>
#define uchar unsigned char
#define uint unsigned int
sbit RS=P1^0;
sbit RW=P1^1;
sbit E=P1^2;
sbit DQ=P1^3;
uchar code table1[]="温度:";
uchar code table2[]="°C";
void display1();
void display2();
void display3();
unsigned int read_temp();
void init_12864();
void write_com(uchar com);
unsigned char str[10] ;
unsigned int t ;
void main()
{
init_12864();
display1();
display2();
while(1)
{
t=read_temp();
sprintf(str,"%d",t);
display3();
write_com(0x01);
}
}
void DELAY_MS (unsigned int a)//毫秒级延时函数
{
unsigned int i;
while( a-- != 0){
for(i = 0; i < 600; i++);
}
}
void delay(unsigned int time)
{
while(--time);
}
void write_com(uchar com)//写入一个命令
{
RS=0;
RW=0;
E=0;
DELAY_MS(1);
P0=com;//通过P0把命令给12864
DELAY_MS(1);
E=1;
DELAY_MS(5);
E=0;
DELAY_MS(5);
}
void write_dat(uchar dat)//写入一个数据
{
RS=1;
RW=0;
E=0;
DELAY_MS(1);
P0=dat;//通过P0把数据给12864
DELAY_MS(1);
E=1;
DELAY_MS(5);
E=0;
DELAY_MS(5);
}
void init_12864()//12864液晶初始化(根据时序图编写)
{
DELAY_MS(100);
write_com(0x30);
DELAY_MS(1);
write_com(0x0e);//打开所有显示
DELAY_MS(1);
write_com(0x0c);//不显示光标
DELAY_MS(1);
write_com(0x06);//地址指针自动加一
DELAY_MS(1);
write_com(0x01);//清屏
DELAY_MS(1);
}
void display1()
{
uchar i;
write_com(0x80);
for(i=0;i<6;i++)
{
write_dat(table1[i]);
DELAY_MS (5);
}
}
void display2()
{
uchar i;
write_com(0x86);
for(i=0;i<4;i++)
{
write_dat(table2[i]);
DELAY_MS(5);
}
}
void display3()
{
uchar i;
write_com(0x88);
for(i=0;i<16;i++)
{
write_dat(str[i]);
DELAY_MS(5);
}
}
// ****************DS18B20复位函数************************/
void OwReset(void)
{
DQ=1;//从高拉倒低
delay(200);
DQ=0;
delay(1000); //550 us
DQ=1;
delay(1000); //延时500 us 这是DQ应该为0 说明复位成功 这里没有用死循环判断 怕干扰时钟
DQ=1; //拉高电平
}
/****************DS18B20写命令函数************************/
//向1-WIRE 总线上写1个字节
void WriteByte(unsigned char val)
{
unsigned char i;
for(i=8;i>0;i--)
{
DQ=1; //从高拉倒低
DQ=0; //5 us
DQ=val&0x01; //最低位移出
delay(100); //66 us
val=val/2; //右移1位
}
DQ=1;
delay(1);
}
//
/****************DS18B20读1字节函数************************/
//从总线上取1个字节
unsigned char ReadByte(void)
{
unsigned char i;
unsigned char value=0;
for(i=8;i>0;i--)
{
DQ=1;
value>>=1; //value=value>>1
DQ=0; //4 us
DQ=1; //4 us
if(DQ)value|=0x80;
delay(100); //66 us
}
DQ=1;
return(value);
}
/****************读出温度函数************************/
//
unsigned int ReadTemp() //读温度并转换成三位有效数字
{
unsigned char a=0;
unsigned char b=0;
unsigned int t,m;
OwReset(); //总线复位
delay(500);
WriteByte(0xcc); //发命令
WriteByte(0x44); //发转换命令
OwReset();
delay(100);
WriteByte(0xcc); //发命令
WriteByte(0xbe);
a=ReadByte(); //读温度值的第字节
b=ReadByte(); //读温度值的高字节
t=b;
t <<=8; // 低位补0 即0x00
t =t |a; // 两字节合成一个整型变量。
t=t>>4; //高位补1
m=b;
m<<=8;
m=m|a;
m=m&0x0f;
t=t*10+m;
return t;
}
|