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

91 lines
2.5 KiB
C
Raw Normal View History

2020-11-27 05:10:47 -05:00
//
2013-08-28 07:57:45 -04:00
// FILE: dht.h
// AUTHOR: Rob Tillaart
2021-11-13 13:57:17 -05:00
// VERSION: 0.1.34
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
//
// HISTORY:
// see dht.cpp file
//
2013-08-28 07:57:45 -04:00
#ifndef dht_h
#define dht_h
#if ARDUINO < 100
#include <WProgram.h>
#include <pins_arduino.h> // fix for broken pre 1.0 version - TODO TEST
2013-08-28 07:57:45 -04:00
#else
#include <Arduino.h>
#endif
2014-06-01 03:48:06 -04:00
2021-11-13 13:57:17 -05:00
#define DHT_LIB_VERSION (F("0.1.34"))
2014-06-01 03:48:06 -04:00
2021-02-03 11:20:20 -05:00
#define DHTLIB_OK 0
#define DHTLIB_ERROR_CHECKSUM -1
#define DHTLIB_ERROR_TIMEOUT -2
#define DHTLIB_ERROR_CONNECT -3
#define DHTLIB_ERROR_ACK_L -4
#define DHTLIB_ERROR_ACK_H -5
#define DHTLIB_DHT11_WAKEUP 18
#define DHTLIB_DHT_WAKEUP 1
#define DHTLIB_DHT11_LEADING_ZEROS 1
#define DHTLIB_DHT_LEADING_ZEROS 6
2013-08-28 07:57:45 -04:00
2014-11-25 13:40:25 -05:00
// max timeout is 100 usec.
// For a 16 Mhz proc 100 usec is 1600 clock cycles
// loops using DHTLIB_TIMEOUT use at least 4 clock cycli
2014-06-01 07:58:36 -04:00
// so 100 us takes max 400 loops
// so by dividing F_CPU by 40000 we "fail" as fast as possible
#ifndef F_CPU
#define DHTLIB_TIMEOUT 1000 // ahould be approx. clock/40000
#else
#define DHTLIB_TIMEOUT (F_CPU/40000)
#endif
2013-08-28 07:57:45 -04:00
2021-02-03 11:20:20 -05:00
2013-08-28 07:57:45 -04:00
class dht
{
public:
2018-03-26 16:30:03 -04:00
dht() { _disableIRQ = false; };
// return values:
// DHTLIB_OK
// DHTLIB_ERROR_CHECKSUM
// DHTLIB_ERROR_TIMEOUT
// DHTLIB_ERROR_CONNECT
// DHTLIB_ERROR_ACK_L
// DHTLIB_ERROR_ACK_H
int8_t read11(uint8_t pin);
int8_t read(uint8_t pin);
int8_t read12(uint8_t pin);
2018-04-03 13:08:27 -04:00
inline int8_t read21(uint8_t pin) { return read(pin); };
inline int8_t read22(uint8_t pin) { return read(pin); };
inline int8_t read33(uint8_t pin) { return read(pin); };
inline int8_t read44(uint8_t pin) { return read(pin); };
inline int8_t read2301(uint8_t pin) { return read(pin); };
inline int8_t read2302(uint8_t pin) { return read(pin); };
inline int8_t read2303(uint8_t pin) { return read(pin); };
inline int8_t read2320(uint8_t pin) { return read(pin); };
inline int8_t read2322(uint8_t pin) { return read(pin); };
2018-04-03 13:08:27 -04:00
bool getDisableIRQ() { return _disableIRQ; };
void setDisableIRQ(bool b ) { _disableIRQ = b; };
2018-03-26 16:30:03 -04:00
2017-07-26 19:18:02 -04:00
float humidity;
float temperature;
2013-08-28 07:57:45 -04:00
private:
uint8_t bits[5]; // buffer to receive data
int8_t _readSensor(uint8_t pin, uint8_t wakeupDelay, uint8_t leadingZeroBits);
2018-03-26 16:30:03 -04:00
bool _disableIRQ;
2013-08-28 07:57:45 -04:00
};
#endif
//
// END OF FILE
//