特点:
相对湿度和温度测量
全部校准,数字输出
长期稳定性
超长的信号传输距离:20米
超低能耗:休眠
引脚安装:可以买封装好的
完全互换 : 直接出结果,不用转化
数据格式
8bit湿度整数数据+8bit湿度小数数据+8bi温度整数数据+8bit温度小数数据+8bit校验和
#include “reg52.h”
#include “intrins.h”
#define dataBuffer P0 //定义8位数据线,p0端口组
sfr AUXR = 0x8E;
sbit dht = P3^3;//模块data插在P3.3
sbit D5 = P3^7;
sbit RS = P1^0;
sbit RW = P1^1;
sbit EN = P1^4;
char temp[8];//温度
char humi[8];//湿度
void check_busy()//读忙信号
{
char tmp = 0x80;//默认在忙,让LCD1602解除忙的状态
dataBuffer = 0x80;
while(tmp & 0x80){//BF为高电平1,表示忙,& 0x80表示只取最高位来做判断
RS = 0;
RW = 1;
EN = 0;
nop();//上升沿给1个时钟周期
EN = 1;
nop();//给EN高电平2个时钟周期
nop();
tmp = dataBuffer;
EN = 0;
nop();//给下降沿1个时钟周期
}
}
void Write_Cmd_Func(char cmd)
{
check_busy();//忙指令
RS = 0;//写命令
RW = 0;
EN = 0;
_nop_();//上升沿给1个时钟周期
dataBuffer = cmd;
_nop_();
EN = 1;
_nop_();//给EN高电平2个时钟周期
_nop_();
EN = 0;
_nop_();//给下降沿1个时钟周期
}
void Write_Data_Func(char dataShow)
{
check_busy();//忙指令
RS = 1;//写数据
RW = 0;
EN = 0;
_nop_();//上升沿给1个时钟周期
dataBuffer = dataShow;
_nop_();
EN = 1;
_nop_();//给EN高电平2个时钟周期
_nop_();
EN = 0;
_nop_();//给下降沿1个时钟周期
}
void Delay5ms() //@11.0592MHz
{
unsigned char i, j;
i = 9;
j = 244;
do
{
while (--j);
} while (--i);
}
void Delay15ms() //@11.0592MHz
{
unsigned char i, j;
i = 27;
j = 226;
do
{
while (--j);
} while (--i);
}
char datas[5];
void Delay30ms() //@11.0592MHz
{
unsigned char i, j;
i = 54;
j = 199;
do
{
while (--j);
} while (--i);
}
void Delay40us() //@11.0592MHz
{
unsigned char i;
_nop_();
i = 15;
while (--i);
}
void Delay1000ms() //@11.0592MHz
{
unsigned char i, j, k;
_nop_();
i = 8;
j = 1;
k = 243;
do
{
do
{
while (--k);
} while (--j);
} while (--i);
}
void UartInit(void) //[email protected]
{
AUXR = 0x01;//降低电磁干扰
SCON = 0x50; //配置串口工作方式1,REN使能接收
TMOD &= 0x0F;
TMOD |= 0x20;//定时器1工作方式位8位自动重装
TH1 = 0xFD;
TL1 = 0xFD;//9600波特率的初值
TR1 = 1;//启动定时器1
}
void sendByte(char data_msg)
{
SBUF = data_msg;
while(!TI);//串口发送控制位
TI = 0;
}
void sendString(char* str)
{
while( *str != ‘\0’){
sendByte(*str);
str++;
}
}
void DHT11_Start()//
{
//a : dht = 1
dht = 1;
//b :dht = 0
dht = 0;
//延时30ms
Delay30ms();
//c: dht = 1
dht = 1;
//卡d点;while(dht1);
while(dht);
//卡e点 while(!dht)
while(!dht);
//卡f点:while(dht)
while(dht);
}
void Read_Data_Form_DHT()
{
int i;//读几轮
int j;//每轮读几次
char tmp;
char flag;
DHT11_Start();//每次要获取温湿度数据时,要发送一次开始信号让DHT11传数据
for(i=0;i<5;i++){
//卡g点:while(!dht)有效数据都是高电平,持续时间不一样,60us读,低电平0 高电平
for(j=0;j<8;j++){
while(!dht);//卡g点
Delay40us();//此时读取电平信号,如果为低,则数据为0,为高,数据为1
if(dht == 1){
flag = 1;
while(dht);//卡高电平变为低电平
}else{
flag = 0;
}
//将得到的数据一位位读入tmp
tmp = tmp<<1;//空出最低位
tmp |= flag;//将电位标志写入最低位
}
datas[i]=tmp;//将5个温湿度数据放入数组datas
}
}
void LCD1602_INIT()
{
//(1)延时 15ms
Delay15ms();
//(2)写指令 38H(不检测忙信号)
Write_Cmd_Func(0x38);
//(3)延时 5ms
Delay5ms();
//(4)以后每次写指令,读/写数据操作均需要检测忙信号
//(5)写指令 38H:显示模式设置
Write_Cmd_Func(0x38);
//(6)写指令 08H:显示关闭
Write_Cmd_Func(0x08);
//(7)写指令 01H:显示清屏
Write_Cmd_Func(0x01);
//(8)写指令 06H:显示光标移动设置
Write_Cmd_Func(0x06);
//(9)写指令 0CH:显示开及光标设置
Write_Cmd_Func(0x0C);
}
void LCD1602_ShowLine(char row,char column,char *Str)
{
switch(row){
case 1:
Write_Cmd_Func(0x80+column);
while(*Str){
Write_Data_Func(*Str);
Str++;
}
break;
case 2:
Write_Cmd_Func(0x80+0x40+column);
while(*Str){
Write_Data_Func(*Str);
Str++;
}
break;
}
}
void Build_Datas()
{
humi[0]=‘H’;
humi[1]=datas[0]/10+0x30;
humi[2]=datas[0]%10+0x30;
humi[3]=‘.’;
humi[4]=datas[1]%10+0x30;
humi[5]=datas[1]/10+0x30;
humi[6]=‘%’;
humi[7]=‘\0’;
temp[0]='T';
temp[1]=datas[2]/10+0x30;
temp[2]=datas[2]%10+0x30;
temp[3]='.';
temp[4]=datas[3]%10+0x30;
temp[5]=datas[3]/10+0x30;
temp[6]='C';
temp[7]='\0';
}
void main()
{
D5 = 1;
Delay1000ms();
UartInit();//初始化串口
LCD1602_INIT();//LCD1602初始化
Delay1000ms();//给模块稳定时间
Delay1000ms();
while(1){
Delay1000ms();
Read_Data_Form_DHT();
if(datas[2] > 24){
D5 = 0;
}
Build_Datas();
sendString(humi);
sendString("\r\n");
sendString(temp);
sendString("\r\n");
LCD1602_ShowLine(1,2,humi);
LCD1602_ShowLine(2,2,temp);
}
}