2017-12-12 16:04:06 -05:00
|
|
|
//
|
|
|
|
// FILE: DHT12.cpp
|
|
|
|
// AUTHOR: Rob Tillaart
|
2021-12-16 09:58:14 -05:00
|
|
|
// VERSION: 0.3.2
|
2017-12-12 16:04:06 -05:00
|
|
|
// PURPOSE: I2C library for DHT12 for Arduino.
|
|
|
|
//
|
|
|
|
// HISTORY:
|
2021-10-25 11:35:53 -04:00
|
|
|
// 0.1.0 2017-12-11 initial version
|
|
|
|
// 0.1.1 2017-12-19 added ESP8266 - issue #86
|
2021-01-29 06:31:58 -05:00
|
|
|
// Verified by Viktor Balint
|
2021-10-25 11:35:53 -04:00
|
|
|
// 0.1.2 2018-09-02 fix negative temperature DHT12 - issue #111
|
|
|
|
// 0.2.0 2020-04-11 explicit constructors, select other Wire interface,
|
|
|
|
// #pragma once
|
|
|
|
// 0.2.1 2020-06-07 fix library.json
|
|
|
|
// 0.3.0 2020-12-19 add Arduino-CI + unit test
|
2021-01-29 06:31:58 -05:00
|
|
|
// temperature and humidity made private
|
2021-10-25 11:35:53 -04:00
|
|
|
// 0.3.1 2021-10-25 add lastRead, update Arduino-CI, badges
|
2021-12-16 09:58:14 -05:00
|
|
|
// 0.3.2 2021-12-16 update library.json, license
|
|
|
|
// add isConnected()
|
2017-12-12 16:04:06 -05:00
|
|
|
|
|
|
|
|
2021-01-29 06:31:58 -05:00
|
|
|
#include "DHT12.h"
|
2017-12-21 07:05:45 -05:00
|
|
|
|
2021-12-16 09:58:14 -05:00
|
|
|
#define DHT12_ADDRESS ((uint8_t)0x5C)
|
2020-11-27 05:10:47 -05:00
|
|
|
|
|
|
|
|
|
|
|
DHT12::DHT12(TwoWire *wire)
|
|
|
|
{
|
2021-01-29 06:31:58 -05:00
|
|
|
_wire = wire;
|
|
|
|
_temperature = 0;
|
|
|
|
_humidity = 0;
|
|
|
|
_humOffset = 0;
|
|
|
|
_tempOffset = 0;
|
2020-11-27 05:10:47 -05:00
|
|
|
}
|
|
|
|
|
2017-12-21 07:05:45 -05:00
|
|
|
|
2021-12-16 09:58:14 -05:00
|
|
|
bool DHT12::begin()
|
2017-12-12 16:04:06 -05:00
|
|
|
{
|
2020-11-27 05:10:47 -05:00
|
|
|
_wire->begin();
|
2021-12-16 09:58:14 -05:00
|
|
|
return isConnected();
|
2017-12-12 16:04:06 -05:00
|
|
|
}
|
|
|
|
|
2020-11-27 05:10:47 -05:00
|
|
|
|
|
|
|
#if defined(ESP8266) || defined(ESP32)
|
2021-12-16 09:58:14 -05:00
|
|
|
bool DHT12::begin(const uint8_t dataPin, const uint8_t clockPin)
|
2020-11-27 05:10:47 -05:00
|
|
|
{
|
|
|
|
if ((dataPin < 255) && (clockPin < 255))
|
|
|
|
{
|
|
|
|
_wire->begin(dataPin, clockPin);
|
|
|
|
} else {
|
|
|
|
_wire->begin();
|
|
|
|
}
|
2021-12-16 09:58:14 -05:00
|
|
|
return isConnected();
|
2020-11-27 05:10:47 -05:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2021-12-16 09:58:14 -05:00
|
|
|
bool DHT12::isConnected()
|
|
|
|
{
|
|
|
|
_wire->beginTransmission(DHT12_ADDRESS);
|
|
|
|
int rv = _wire->endTransmission();
|
|
|
|
return rv == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-12-12 16:04:06 -05:00
|
|
|
int8_t DHT12::read()
|
|
|
|
{
|
|
|
|
// READ SENSOR
|
|
|
|
int status = _readSensor();
|
|
|
|
if (status < 0) return status;
|
|
|
|
|
|
|
|
// CONVERT AND STORE
|
2021-01-29 06:31:58 -05:00
|
|
|
_humidity = _bits[0] + _bits[1] * 0.1;
|
|
|
|
_temperature = _bits[2] + (_bits[3] & 0x7F) * 0.1;
|
|
|
|
if (_bits[3] & 0x80)
|
2017-12-12 16:04:06 -05:00
|
|
|
{
|
2021-01-29 06:31:58 -05:00
|
|
|
_temperature = -_temperature;
|
2017-12-12 16:04:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// TEST CHECKSUM
|
2021-01-29 06:31:58 -05:00
|
|
|
uint8_t checksum = _bits[0] + _bits[1] + _bits[2] + _bits[3];
|
|
|
|
if (_bits[4] != checksum) return DHT12_ERROR_CHECKSUM;
|
2017-12-12 16:04:06 -05:00
|
|
|
|
2021-10-25 11:35:53 -04:00
|
|
|
_lastRead = millis();
|
2021-12-16 09:58:14 -05:00
|
|
|
|
2017-12-12 16:04:06 -05:00
|
|
|
return DHT12_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int DHT12::_readSensor()
|
|
|
|
{
|
|
|
|
// GET CONNECTION
|
2020-11-27 05:10:47 -05:00
|
|
|
_wire->beginTransmission(DHT12_ADDRESS);
|
|
|
|
_wire->write(0);
|
|
|
|
int rv = _wire->endTransmission();
|
2017-12-12 16:04:06 -05:00
|
|
|
if (rv < 0) return rv;
|
|
|
|
|
|
|
|
// GET DATA
|
|
|
|
const uint8_t length = 5;
|
2020-11-27 05:10:47 -05:00
|
|
|
int bytes = _wire->requestFrom(DHT12_ADDRESS, length);
|
2021-01-29 06:31:58 -05:00
|
|
|
|
|
|
|
if (bytes == 0) return DHT12_ERROR_CONNECT;
|
2017-12-12 16:04:06 -05:00
|
|
|
if (bytes < length) return DHT12_MISSING_BYTES;
|
|
|
|
|
|
|
|
for (int i = 0; i < bytes; i++)
|
|
|
|
{
|
2021-01-29 06:31:58 -05:00
|
|
|
_bits[i] = _wire->read();
|
2017-12-12 16:04:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return bytes;
|
|
|
|
}
|
2020-11-27 05:10:47 -05:00
|
|
|
|
2021-10-25 11:35:53 -04:00
|
|
|
|
2020-11-27 05:10:47 -05:00
|
|
|
// -- END OF FILE --
|