GY-63_MS5611/libraries/DHTlib/dht.cpp

262 lines
6.4 KiB
C++
Raw Normal View History

2013-08-28 07:57:45 -04:00
//
// FILE: dht.cpp
// AUTHOR: Rob Tillaart
2023-10-25 11:25:03 -04:00
// VERSION: 0.1.36
2020-11-27 05:10:47 -05:00
// PURPOSE: DHT Temperature & Humidity Sensor library for Arduino, AVR optimized
// URL: https://github.com/RobTillaart/DHTlib
// http://arduino.cc/playground/Main/DHTLib
2013-08-28 07:57:45 -04:00
//
2023-10-25 11:25:03 -04:00
// inspired by DHT11 library
2013-08-28 07:57:45 -04:00
2021-12-16 10:44:08 -05:00
2013-08-28 07:57:45 -04:00
#include "dht.h"
2021-12-16 10:44:08 -05:00
#define DHTLIB_DHT11_WAKEUP 18
#define DHTLIB_DHT_WAKEUP 1
#define DHTLIB_DHT11_LEADING_ZEROS 1
#define DHTLIB_DHT_LEADING_ZEROS 6
2023-10-25 11:25:03 -04:00
// max timeout is 100 microseconds.
// For a 16 MHz processor 100 microseconds is 1600 clock cycles
// loops using DHTLIB_TIMEOUT use at least 4 clock cycles
// so 100 us takes max 400 loops
// so by dividing F_CPU by 40000 we "fail" as fast as possible
2021-12-16 10:44:08 -05:00
#ifndef F_CPU
2023-10-25 11:25:03 -04:00
#define DHTLIB_TIMEOUT 1000 // should be approx. clock/40000
2021-12-16 10:44:08 -05:00
#else
#define DHTLIB_TIMEOUT (F_CPU/40000)
#endif
2013-08-28 07:57:45 -04:00
/////////////////////////////////////////////////////
//
2023-10-25 11:25:03 -04:00
// PUBLIC
2013-08-28 07:57:45 -04:00
//
int8_t dht::read11(uint8_t pin)
2013-08-28 07:57:45 -04:00
{
2023-10-25 11:25:03 -04:00
// READ VALUES
2018-04-03 13:08:27 -04:00
if (_disableIRQ) noInterrupts();
int8_t result = _readSensor(pin, DHTLIB_DHT11_WAKEUP, DHTLIB_DHT11_LEADING_ZEROS);
2018-04-03 13:08:27 -04:00
if (_disableIRQ) interrupts();
2023-10-25 11:25:03 -04:00
// these bits are always zero, masking them reduces errors.
bits[0] &= 0x7F;
bits[2] &= 0x7F;
2013-08-28 07:57:45 -04:00
2023-10-25 11:25:03 -04:00
// CONVERT AND STORE
humidity = bits[0]; // bits[1] == 0;
temperature = bits[2]; // bits[3] == 0;
2013-08-28 07:57:45 -04:00
2023-10-25 11:25:03 -04:00
// TEST CHECKSUM
2017-09-20 08:47:53 -04:00
uint8_t sum = bits[0] + bits[1] + bits[2] + bits[3];
if (bits[4] != sum)
{
return DHTLIB_ERROR_CHECKSUM;
}
return result;
2013-08-28 07:57:45 -04:00
}
2021-12-16 10:44:08 -05:00
int8_t dht::read12(uint8_t pin)
{
2023-10-25 11:25:03 -04:00
// READ VALUES
2018-04-03 13:08:27 -04:00
if (_disableIRQ) noInterrupts();
int8_t result = _readSensor(pin, DHTLIB_DHT11_WAKEUP, DHTLIB_DHT11_LEADING_ZEROS);
2018-04-03 13:08:27 -04:00
if (_disableIRQ) interrupts();
2023-10-25 11:25:03 -04:00
// CONVERT AND STORE
humidity = bits[0] + bits[1] * 0.1;
temperature = bits[2] + (bits[3] & 0x7F) * 0.1;
2023-10-25 11:25:03 -04:00
if (bits[3] & 0x80) // negative temperature
{
temperature = -temperature;
}
2023-10-25 11:25:03 -04:00
// TEST CHECKSUM
uint8_t sum = bits[0] + bits[1] + bits[2] + bits[3];
if (bits[4] != sum)
{
return DHTLIB_ERROR_CHECKSUM;
}
return result;
}
2021-12-16 10:44:08 -05:00
int8_t dht::read(uint8_t pin)
2013-08-28 07:57:45 -04:00
{
2023-10-25 11:25:03 -04:00
// READ VALUES
2018-04-03 13:08:27 -04:00
if (_disableIRQ) noInterrupts();
int8_t result = _readSensor(pin, DHTLIB_DHT_WAKEUP, DHTLIB_DHT_LEADING_ZEROS);
2018-04-03 13:08:27 -04:00
if (_disableIRQ) interrupts();
2023-10-25 11:25:03 -04:00
// these bits are always zero, masking them reduces errors.
bits[0] &= 0x03;
bits[2] &= 0x83;
2023-10-25 11:25:03 -04:00
// CONVERT AND STORE
2021-11-13 13:57:17 -05:00
humidity = (bits[0] * 256 + bits[1]) * 0.1;
int16_t t = ((bits[2] & 0x7F) * 256 + bits[3]);
if (t == 0)
{
2023-10-25 11:25:03 -04:00
temperature = 0.0; // prevent -0.0;
2021-11-13 13:57:17 -05:00
}
else
{
temperature = t * 0.1;
if((bits[2] & 0x80) == 0x80 )
{
temperature = -temperature;
}
}
2023-10-25 11:25:03 -04:00
// HEXDUMP DEBUG
2021-01-29 06:31:58 -05:00
/*
Serial.println();
// CHECKSUM
if (_bits[4] < 0x10) Serial.print(0);
Serial.print(_bits[4], HEX);
Serial.print(" ");
// TEMPERATURE
if (_bits[2] < 0x10) Serial.print(0);
Serial.print(_bits[2], HEX);
if (_bits[3] < 0x10) Serial.print(0);
Serial.print(_bits[3], HEX);
Serial.print(" ");
Serial.print(temperature, 1);
Serial.print(" ");
// HUMIDITY
if (_bits[0] < 0x10) Serial.print(0);
Serial.print(_bits[0], HEX);
if (_bits[1] < 0x10) Serial.print(0);
Serial.print(_bits[1], HEX);
Serial.print(" ");
Serial.print(humidity, 1);
*/
2023-10-25 11:25:03 -04:00
// TEST CHECKSUM
uint8_t sum = bits[0] + bits[1] + bits[2] + bits[3];
if (bits[4] != sum)
{
return DHTLIB_ERROR_CHECKSUM;
}
return result;
2013-08-28 07:57:45 -04:00
}
2021-12-16 10:44:08 -05:00
2013-08-28 07:57:45 -04:00
/////////////////////////////////////////////////////
//
2023-10-25 11:25:03 -04:00
// PRIVATE
2013-08-28 07:57:45 -04:00
//
int8_t dht::_readSensor(uint8_t pin, uint8_t wakeupDelay, uint8_t leadingZeroBits)
{
2023-10-25 11:25:03 -04:00
// INIT BUFFERVAR TO RECEIVE DATA
uint8_t mask = 128;
uint8_t idx = 0;
2014-11-25 13:40:25 -05:00
uint8_t data = 0;
uint8_t state = LOW;
uint8_t pstate = LOW;
uint16_t zeroLoop = DHTLIB_TIMEOUT;
uint16_t delta = 0;
2023-10-25 11:25:03 -04:00
leadingZeroBits = 40 - leadingZeroBits; // reverse counting...
2014-11-25 13:40:25 -05:00
2023-10-25 11:25:03 -04:00
// replace digitalRead() with Direct Port Reads.
// reduces footprint ~100 bytes => portability issue?
// direct port read is about 3x faster
uint8_t bit = digitalPinToBitMask(pin);
uint8_t port = digitalPinToPort(pin);
volatile uint8_t *PIR = portInputRegister(port);
2023-10-25 11:25:03 -04:00
// REQUEST SAMPLE
pinMode(pin, OUTPUT);
2023-10-25 11:25:03 -04:00
digitalWrite(pin, LOW); // T-be
if (wakeupDelay > 8) delay(wakeupDelay);
else delayMicroseconds(wakeupDelay * 1000UL);
2023-10-25 11:25:03 -04:00
digitalWrite(pin, HIGH); // T-go
pinMode(pin, INPUT);
2023-10-25 11:25:03 -04:00
uint16_t loopCount = DHTLIB_TIMEOUT * 2; // 200 uSec max
// while(digitalRead(pin) == HIGH)
while ((*PIR & bit) != LOW )
{
2023-10-25 11:25:03 -04:00
if (--loopCount == 0)
2018-03-26 16:30:03 -04:00
{
return DHTLIB_ERROR_CONNECT;
}
}
2023-10-25 11:25:03 -04:00
// GET ACKNOWLEDGE or TIMEOUT
loopCount = DHTLIB_TIMEOUT;
2023-10-25 11:25:03 -04:00
// while(digitalRead(pin) == LOW)
while ((*PIR & bit) == LOW ) // T-rel
2014-06-01 03:48:06 -04:00
{
2023-10-25 11:25:03 -04:00
if (--loopCount == 0)
2018-03-26 16:30:03 -04:00
{
return DHTLIB_ERROR_ACK_L;
}
2014-06-01 03:48:06 -04:00
}
loopCount = DHTLIB_TIMEOUT;
2023-10-25 11:25:03 -04:00
// while(digitalRead(pin) == HIGH)
while ((*PIR & bit) != LOW ) // T-reh
2014-06-01 03:48:06 -04:00
{
2018-03-26 16:30:03 -04:00
if (--loopCount == 0)
{
return DHTLIB_ERROR_ACK_H;
}
2014-06-01 03:48:06 -04:00
}
loopCount = DHTLIB_TIMEOUT;
2023-10-25 11:25:03 -04:00
// READ THE OUTPUT - 40 BITS => 5 BYTES
for (uint8_t i = 40; i != 0; )
{
2023-10-25 11:25:03 -04:00
// WAIT FOR FALLING EDGE
state = (*PIR & bit);
if (state == LOW && pstate != LOW)
{
2023-10-25 11:25:03 -04:00
if (i > leadingZeroBits) // DHT22 first 6 bits are all zero !! DHT11 only 1
{
zeroLoop = min(zeroLoop, loopCount);
delta = (DHTLIB_TIMEOUT - zeroLoop)/4;
}
2023-10-25 11:25:03 -04:00
else if ( loopCount <= (zeroLoop - delta) ) // long -> one
{
data |= mask;
}
mask >>= 1;
2023-10-25 11:25:03 -04:00
if (mask == 0) // next byte
{
mask = 128;
bits[idx] = data;
idx++;
data = 0;
}
2023-10-25 11:25:03 -04:00
// next bit
--i;
2023-10-25 11:25:03 -04:00
// reset timeout flag
loopCount = DHTLIB_TIMEOUT;
}
pstate = state;
2023-10-25 11:25:03 -04:00
// Check timeout
if (--loopCount == 0)
{
2018-03-26 16:30:03 -04:00
return DHTLIB_ERROR_TIMEOUT;
}
}
2023-10-25 11:25:03 -04:00
// pinMode(pin, OUTPUT);
// digitalWrite(pin, HIGH);
return DHTLIB_OK;
2013-08-28 07:57:45 -04:00
}
2021-12-16 10:44:08 -05:00
2023-10-25 11:25:03 -04:00
// -- END OF FILE --
2021-12-16 10:44:08 -05:00