找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 1413|回复: 0
打印 上一主题 下一主题
收起左侧

单片机温度报警器的LCD不显示 求帮助

[复制链接]
跳转到指定楼层
楼主
ID:530740 发表于 2019-5-14 19:13 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
仿真时候,报警器和蜂鸣器正常响,但是LCD不显示温度。
代码如下:#include <reg52.h>//头文件,52单片机改为52
#include <intrins.h>
#define LCD_DATA P0
sbit LCD_RS = P2^0;
sbit LCD_RW = P2^1;
sbit LCD_EN = P2^2;
unsigned char dispBuff0[16]={'T','E','M',
'P',':',' ',' ',' ',' ',' ',' ','C',' ',' ',' ',};//LCD第一行显示
sbit DQ=P2^3;  //DS18B20数据端
unsigned int temperature=0;//温度
unsigned char fuhao=0;//温度的正负符号
//LED报警指示的IO口以及变量定义
sbit LED1=P2^4;//温度报警指示
#define off  1                   //高电平时灯为关闭状态
#define on 0                   //低电平时灯为开启状态
sbit speaker=P3^1;//蜂鸣器
void    Delay20ms() ;
void         LCD_WriteDat(unsigned char lcd_dat);
void         LCD_WriteCmd(unsigned char lcd_cmd);
unsigned char         LCD_ReadStatus(void);
void         LCD_Goto(unsigned char x,unsigned char y);
void    LCD_Display(unsigned char row,unsigned char *str);
void delay(unsigned int x)//延时公用程序
{
unsigned char j;
while(x--)
    {
    for(j=0;j<125;j++);
    }
}
/*1、LCD模块子函数*/
  void         LCD_Init(void)
{
        Delay20ms();
  LCD_WriteCmd(0x38);        //8位机接口、双行显示、5×7字符点阵;
        LCD_WriteCmd(0x0c);        //显示开启、光标不显示也不闪烁;
        LCD_WriteCmd(0x01);        //清屏;
     LCD_WriteCmd(0x06);        //光标右移一位、整屏不移动;

  LCD_Goto(0,0);
        }
void         LCD_WriteDat(unsigned char lcd_dat)
{
        unsigned char tmp;
        tmp = LCD_ReadStatus();                //读状态;
        while((tmp & 0x80))                        //是否忙 ?
                {
                        tmp = LCD_ReadStatus();
                        }
        
        LCD_RS = 1;
        LCD_RW = 0;
        LCD_DATA = lcd_dat;
        _nop_();
        LCD_EN = 0;
        _nop_();
        _nop_();
        LCD_EN = 1;        
        }
void         LCD_WriteCmd(unsigned char lcd_cmd)
{
        unsigned char tmp;
        tmp = LCD_ReadStatus();
        while((tmp & 0x80))
        {
                tmp = LCD_ReadStatus();
                }
        LCD_RS = 0;
        LCD_RW = 0;
        LCD_DATA = lcd_cmd;
        _nop_();
        LCD_EN = 0;
        _nop_();
        _nop_();
        LCD_EN = 1;
        }
unsigned char         LCD_ReadStatus(void)
{
        unsigned char tmp;
        #if 0
        LCD_RS = 0;
        LCD_RW = 1;
        LCD_EN = 1;
        tmp = LCD_DATA;
        LCD_EN = 0;
        #endif
        LCD_DATA = 0xff;
        LCD_RS = 0;
        LCD_RW = 1;
        LCD_EN = 0;
        _nop_();
        _nop_();
        LCD_EN = 1;
        tmp = LCD_DATA;
        return tmp;
        }
void         LCD_Goto(unsigned char x,unsigned char y)
{
        unsigned char tmp;
        if(y)                                //若是第二行;
                {
                        tmp = 0xc0 + x;
                        LCD_WriteCmd(tmp);
                        }
        else
                {
                        tmp = 0x80 + x;
                        LCD_WriteCmd(tmp);
                        }               
        }
void LCD_Display(unsigned char row,unsigned char *str)
{
        if(row)
                {
                        LCD_Goto(0,1);
                        }
  else
          {
                  LCD_Goto(0,0);
                  }
  while(*str != '\0')
  {
          LCD_WriteDat(*str++);
          }
        }


void Delay20ms()   //粗略延时;
{
  unsigned int tmp = 50000;
  while(tmp--);
  }        
/*2、DS18B2模块*/
void delay_18B20(unsigned int i)
{
while(i--);
}
/**********ds18b20初始化函数**********************/
void Init_DS18B20(void)
{
unsigned char x=0;
DQ = 1;          //DQ复位
delay_18B20(2); //稍做延时
DQ = 0;          //单片机将DQ拉低
delay_18B20(60); //精确延时 大于 480us
DQ = 1;          //拉高总线
delay_18B20(2);
x=DQ;            //稍做延时后 如果x=0则初始化成功 x=1则初始化失败
delay_18B20(15);
}
/***********ds18b20读一个字节**************/
unsigned char ReadOneChar(void)
{
unsigned char i=0;
unsigned char dat = 0;
for (i=8;i>0;i--)
{
    DQ = 0; // 给脉冲信号
    dat>>=1;
    DQ = 1; // 给脉冲信号
    if(DQ)
    dat |=0x80;
    delay_18B20(4);
}
   return(dat);
}
/*************ds18b20写一个字节****************/
void WriteOneChar(unsigned char dat)
{
   unsigned char i=0;
   for (i=8; i>0; i--)
   {
    DQ = 0;
    DQ = dat&0x01;
    delay_18B20(2);
    DQ = 1;
    dat>>=1;
  }
}
void ReadTemperature(void)
{unsigned char readdata[2]={0,0};
fuhao=0;
temperature=0;
delay_18B20(40);       // this message is very important
Init_DS18B20();
WriteOneChar(0xCC);    // 跳过读序号列号的操作
WriteOneChar(0x44); // 启动温度转换
delay_18B20(40);       // this message is wery important
Init_DS18B20();
WriteOneChar(0xCC); //跳过读序号列号的操作
WriteOneChar(0xBE); //读取温度寄存器等(共可读9个寄存器) 前两个就是温度
delay_18B20(40);
readdata[0]=ReadOneChar();    //读取温度值低位
readdata[1]=ReadOneChar();      //读取温度值高位
if (readdata[1]>127)
       {readdata[0]^=0xff;//求补码
        readdata[1]^=0xff;
        fuhao=1;//符号为“-”
       }
temperature =readdata[1]*256+readdata[0] ;
temperature =temperature*0.625+0.5 ;//放大了10倍
}


void timer0() interrupt 1 //这里输出蜂鸣器信号
{TH0=254;//频率为1600hz时计时器初值
TL0=200;
speaker=!speaker;
}
void main()
{unsigned char DEN=0;
LCD_Init();//初始化LCD
/*计时器0设置*/
TMOD=0x11;//定时器1、2工作于方式1
TH0=254;//频率为1600hz时计时器初值
TL0=200;
ET0=1;  
EA=1;
speaker=1;
while(1)
     {
      /*LCD第一行显示温度*/
      ReadTemperature();//读取温度值
      if (fuhao)
         {dispBuff0[5]='-';}
          else
             {dispBuff0[5]='+';}
          dispBuff0[6]=(temperature/1000)%10+'0';//温度值百位
          dispBuff0[7]=(temperature/100)%10+'0';//温度值十位
          dispBuff0[8]=(temperature/10)%10+'0';//温度值个位
          dispBuff0[9]='.';
          dispBuff0[10]=(temperature)%10+'0';//温度值小数点后一位;
          /*报警程序*/
          if (temperature>=330 && !fuhao)//温度大于40摄氏度
             {LED1=on;}
             else
                {LED1=off;}

          if (temperature>=330 && !fuhao)//响蜂鸣器
             {TR0=1;}
             else
                {TR0=0;}
       }//while

}//main


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 顶1 踩
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表