标题:
DHT11温湿度arduino程序
[打印本页]
作者:
小小许有瑾
时间:
2018-4-10 14:59
标题:
DHT11温湿度arduino程序
DHT11温湿度检测程序
0.jpg
(23.37 KB, 下载次数: 47)
下载附件
2018-4-10 17:13 上传
arduino单片机源程序如下:
#include "dht.h"
#define TIMEOUT 10000
#define pin D2
// return values:
// 0 : OK
// -1 : checksum error
// -2 : timeout
int dht::read11()
{
// READ VALUES
int rv = read();
if (rv != 0) return rv;
// CONVERT AND STORE
humidity = bits[0]; // bit[1] == 0;
temperature = bits[2]; // bits[3] == 0;
// TEST CHECKSUM
uint8_t sum = bits[0] + bits[2]; // bits[1] && bits[3] both 0
if (bits[4] != sum) return -1;
return 0;
}
// return values:
// 0 : OK
// -1 : checksum error
// -2 : timeout
int dht::read22()
{
// READ VALUES
int rv = read();
if (rv != 0) return rv;
// CONVERT AND STORE
humidity = word(bits[0], bits[1]) * 0.1;
int sign = 1;
if (bits[2] & 0x80) // negative temperature
{
bits[2] = bits[2] & 0x7F;
sign = -1;
}
temperature = sign * word(bits[2], bits[3]) * 0.1;
// TEST CHECKSUM
uint8_t sum = bits[0] + bits[1] + bits[2] + bits[3];
if (bits[4] != sum) return -1;
return 0;
}
// return values:
// 0 : OK
// -2 : timeout
int dht::read()
{
// INIT BUFFERVAR TO RECEIVE DATA
uint8_t cnt = 7;
uint8_t idx = 0;
// EMPTY BUFFER
for (int i=0; i< 5; i++) bits[i] = 0;
// REQUEST SAMPLE
pinMode(pin, OUTPUT);
digitalWrite(pin, LOW);
delay(20);
digitalWrite(pin, HIGH);
delayMicroseconds(40);
pinMode(pin, INPUT);
// GET ACKNOWLEDGE or TIMEOUT
unsigned int loopCnt = TIMEOUT;
while(digitalRead(pin) == LOW)
if (loopCnt-- == 0) return -2;
loopCnt = TIMEOUT;
while(digitalRead(pin) == HIGH)
if (loopCnt-- == 0) return -2;
// READ THE OUTPUT - 40 BITS => 5 BYTES
for (int i=0; i<40; i++)
{
loopCnt = TIMEOUT;
while(digitalRead(pin) == LOW)
if (loopCnt-- == 0) return -2;
unsigned long t = micros();
loopCnt = TIMEOUT;
while(digitalRead(pin) == HIGH)
……………………
…………限于本文篇幅 余下代码请从51黑下载附件…………
复制代码
所有资料51hei提供下载:
temperature.rar
(1.77 KB, 下载次数: 24)
2018-4-10 14:58 上传
点击文件名下载附件
下载积分: 黑币 -5
作者:
碌碌无为
时间:
2018-4-12 15:41
看起来挺高大上的,过来学习一下。
作者:
zx360c
时间:
2018-4-24 20:00
楼主能不能单独发一份???thanks。
欢迎光临 (http://www.51hei.com/bbs/)
Powered by Discuz! X3.1