• 方案介紹
  • 附件下載
  • 推薦器件
  • 相關(guān)推薦
申請入駐 產(chǎn)業(yè)圖譜

基于51單片機的溫度濕度采集系統(tǒng)

2024/09/06
1909
加入交流群
掃碼加入
獲取工程師必備禮包
參與熱點資訊討論

有需要資料的可了解一下.docx

共1個文件

實現(xiàn)功能:

1、對溫度、濕度進行采集
2、可以警報提示、修改溫度、濕度上下限值
3、lcd顯示相關(guān)信息

原理圖

部分程序:

#include <reg52.h>

#define uint unsigned int

#define uchar unsigned char

#include <intrins.h>

typedef bit BOOL? ;

sbit io = P1^1 ;//(口線定義)

sbit bee=P1^0;

sbit rs = P2^5 ;

sbit rw = P2^6 ;

sbit ep = P2^7 ;

bit flag_300ms ;

sbit K1=P1^2;

sbit K2=P1^3;

sbit K3=P1^4;

uchar yemian=0;//(定義變量)

uchar flat=1;

uchar data_byte;

uchar RH,RL,TH,TL;

uchar WenDu,ShiDu;//報警的溫度和濕度

#include "eeprom52.h"

/****************************延時程序****************************/

void delay(uchar ms)

{?????? // 延時子程序

uchar i ;

while(ms--)

{

for(i = 0 ; i<250;i++) ;

}

}

void delay1()//延時10us

{

uchar i;

i--;

i--;

i--;

i--;

i--;

i--;

}

void longdelay(uchar s) //長延時

{

while(s--)

{

delay(20) ;

}

}

/******************把數(shù)據(jù)保存到單片機內(nèi)部eeprom中******************/

void write_eeprom()

{

SectorErase(0x2000);

byte_write(0x2000, WenDu);

byte_write(0x2001, ShiDu);

byte_write(0x2060, a_a);

}

/******************把數(shù)據(jù)從單片機內(nèi)部eeprom中讀出來*****************/

void read_eeprom()

{

WenDu?? = byte_read(0x2000);

ShiDu = byte_read(0x2001);

a_a????? = byte_read(0x2060);

}

/**************開機自檢eeprom初始化*****************/

void init_eeprom()

{

read_eeprom();?????????????? //先讀

if(a_a != 2)?????????????? //新的單片機初始單片機內(nèi)問eeprom

{

WenDu?? = 30;

ShiDu?? = 80;

a_a = 2;

write_eeprom();

}

}

/********************報警程序部分*******************/

void warn()? //報警函數(shù)

{

if(TH>=WenDu)? //檢測的溫度高于設(shè)定溫度報警值

{

bee=0; //報警

}

if(RH>=ShiDu)? //檢測的濕度高于設(shè)定的濕度值

{

bee=0; //報警

}

if( TH<WenDu? &&? RH<ShiDu )

{

bee=1; //停止報警

}

}

/************************LCD模塊******************************************/

BOOL lcd_bz()//測試LCD忙碌狀態(tài)

{

BOOL result ;

rs = 0 ;

rw = 1 ;

ep = 1 ;

result = (BOOL)(P0 & 0x80) ;

ep = 0 ;

return result ;

}

void write_cmd(uchar cmd)// 寫指令

{

while(lcd_bz()) ;

rs = 0 ;

rw = 0 ;

ep = 0 ;

P0 = cmd ;

ep = 1 ;

ep = 0 ;

}

void write_addr(uchar addr)//寫地址

{

write_cmd(addr|0x80) ;

}

void write_byte(uchar dat)//寫字節(jié)

{

while(lcd_bz()) ;

rs = 1 ;

rw = 0 ;

ep = 0 ;

P0 = dat ;

ep = 1 ;

ep = 0 ;

}

void lcd_init()// 初始化

{

write_cmd(0x38) ;

delay(1);

write_cmd(0x08) ;

delay(1);

write_cmd(0x01) ;

delay(1);

write_cmd(0x06) ;

delay(1);

write_cmd(0x0c) ;

delay(1);

}

void display(uchar addr, uchar q)//在某一地址上顯示一字節(jié)

{

delay(1) ;

write_addr(addr) ;

write_byte(q) ;

delay(1) ;

}

/*********************** DHT11測試模塊***************************************/

void start()//開始信號

{

io=1;

delay1();

io=0;

delay(20);//>18ms

io=1;

delay1();//20-40us

delay1();

delay1();

delay1();

delay1();

}

uchar receive_byte()//接收一個字節(jié)

{

uchar i,temp,count;

for(i=0;i<8;i++)

{

temp=0;

delay1();delay1();delay1();delay1();

if(io==1)temp=1;

count=2;

while((io)&&count++);

if(count==1)break;

data_byte<<=1;

data_byte|=temp;

}

return data_byte;

}

void receive()//接收數(shù)據(jù)

{

uchar T_H,T_L,R_H,R_L,check,num_check;

uchar count;

start();//開始信號

io=1;

if(!io)//讀取DHT11響應(yīng)信號

{

while((io)&&count++);

R_H=receive_byte();

R_L=receive_byte();

T_H=receive_byte();

T_L=receive_byte();

check=receive_byte();

io=0;//拉低延時50us

delay1();delay1();delay1();delay1();delay1();

io=1;

num_check=R_H+R_L+T_H+T_L;

if(num_check=check)

{

RH=R_H;

RL=R_L;

TH=T_H;

TL=T_L;

check=num_check;

}

}

}

 

  • 有需要資料的可了解一下.docx
    下載

推薦器件

更多器件
器件型號 數(shù)量 器件廠商 器件描述 數(shù)據(jù)手冊 ECAD模型 風(fēng)險等級 參考價格 更多信息
74LVC14AD,118 1 Nexperia 74LVC14A - Hex inverting Schmitt trigger with 5 V tolerant input@en-us SOIC 14-Pin

ECAD模型

下載ECAD模型
$0.38 查看
ECS-.327-12.5-39-TR 1 ECS International Inc Parallel - Fundamental Quartz Crystal, 0.032768MHz Nom, ROHS COMPLIANT, MINIATURE, CERAMIC, SMD, 2 PIN

ECAD模型

下載ECAD模型
$1.31 查看
510BBA125M000BAG 1 Silicon Laboratories Inc LVDS Output Clock Oscillator, 125MHz Nom, ROHS COMPLIANT PACKAGE-6

ECAD模型

下載ECAD模型
$4.22 查看

相關(guān)推薦