找回密码
 立即注册

QQ登录

只需一步,快速开始

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

温度传感器烧录进去不能正常显示,有没有人可以帮我看看这个程序有没有问题啊?

[复制链接]
跳转到指定楼层
楼主
ID:389906 发表于 2018-8-25 12:39 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

#ifndef _TEMP_H_
#define _TEMP_H_
#include<reg51.h>
#ifndef uchar
#define uchar unsigned char
#endif
#ifndef uint
#define uint unsigned int
#endif

sbit DSPORT=P3^7;
  
void Delay1ms(uint y);
uchar DS18B20Init();
void DS18B20WriteByte(uchar dat);
uchar DS18B20ReadByte();
void changetemp();
void  readtempcom();
int readtemp();
#endif

#include"temp.h"
void Delay1ms(uint y)
{
  uint x;
  for(;y>0;y--)
   {
     for(x=110;x>0;x--);
   }
}
uchar DS18B20Init()
{
   uchar i;
   DSPORT=0;
   i=70;
   while(i--);
   DSPORT=1;
   i=0;
   while(DSPORT)
   {
   Delay1ms(1);
   i++;
   if(i>5)
   {
   return 0;
   }
   }
   return 1;
}
void DS18B20WriteByte(uchar dat)
{
   uint i,j;
   for(j=0;j<8;j++)
   {
   DSPORT=0;
   i++;
   dat=dat|0x01;
   i=6;
   while(i--);
   DSPORT=1;
   dat>>=1;
   }
}
uchar DS18B20ReadByte()
{
   uchar byte,bi;
   uint i,j;
   for(j=0;j<8;j++)
   {
      DSPORT=0;
   i++;
   DSPORT=1;
   i++;
   i++;
    bi = DSPORT;  
  byte = (byte >> 1) | (bi << 7);        
  i = 4;
  while(i--);
}   
   
   return byte;
}

void changetemp()
{
   DS18B20Init();
   Delay1ms(1);
   DS18B20WriteByte(0xcc);
   DS18B20WriteByte(0x44);
}
void  readtempcom()
{
   DS18B20Init();
   Delay1ms(1);
   DS18B20WriteByte(0xcc);
   DS18B20WriteByte(0xbe);
}
int readtemp()
{
  int temp=0;
  uchar tmh,tml;
  changetemp();
  readtempcom();
  tmh=DS18B20ReadByte();
  tml=DS18B20ReadByte();
  temp=tmh;
  temp<<=8;
  temp|=tml;
  return temp;
}


#include<reg51.h>
#include<temp.h>
typedef unsigned char u8;
typedef unsigned int u16;
sbit LSA=P2^2;
sbit LSB=P2^3;
sbit LSC=P2^4;
char num=0;
u8 Date[8];
u8 code shuzu[10]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};

void delay(u16 i)
{
  while(i--);
}
void datprocess(int temp)
{
   float tp;
   if(temp<0)
   {
       Date[0]=0x40;
  temp=temp-1;
  temp=~temp;
  tp=temp;
  temp=tp*0.0625*100+0.5;
   }
   else
   {
        Date[0]=0x00;
  tp=temp;
  temp=tp*0.0625*100+0.5;
   }
        Date[1]=shuzu[temp/10000];
  Date[2]=shuzu[temp%10000/1000];
  Date[3]=shuzu[temp%1000/100]|0x80;
  Date[4]=shuzu[temp%100/10];
  Date[5]=shuzu[temp%10];
}

void showprocess()
{
      u8 i;
    for(i=0;i<6;i++)
    {
       switch(i)
    {
   case 0:LSA=0;LSB=0;LSC=0;break;
   case 1:LSA=1;LSB=0;LSC=0;break;
   case 2:LSA=0;LSB=1;LSC=0;break;
   case 3:LSA=1;LSB=1;LSC=0;break;
   case 4:LSA=0;LSB=0;LSC=1;break;
   case 5:LSA=1;LSB=0;LSC=1;break;
          }
    P0=Date[5-i];
    delay(100);
    P0=0x00;
  }
     
}


void main()
{
  while(1)
  {
    datprocess(readtemp());
showprocess();
  }
  }



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

使用道具 举报

沙发
ID:225054 发表于 2018-8-25 13:22 来自手机
帮顶,我还没学到这里呢

板凳
ID:386381 发表于 2018-8-26 01:13 来自手机 | 只看该作者
什么样的状况显示的,最好能贴图上来大家好帮你解决
回复

使用道具 举报

地板
ID:384109 发表于 2018-8-26 13:43 | 只看该作者
应该是数制转换的问题,temp=tp*0.0625*100+0.5;,temp是整型,tp是浮点型,如果tp强制转换给temp的话,不说别的,至少小数部分就没有了
回复

使用道具 举报

5#
ID:390187 发表于 2018-8-26 17:28 | 只看该作者
这几天正在做18B20温度控制程序。需要的话可以给你看看。
回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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