GY-63_MS5611/libraries/DHT20
2022-09-11 11:44:04 +02:00
..
.github add funding.yml 2022-08-03 21:56:07 +02:00
documents 0.1.0 DHT20 2022-01-11 20:48:39 +01:00
examples 0.1.1 DHT20 2022-09-11 11:44:04 +02:00
test 0.1.0 DHT20 2022-01-11 20:48:39 +01:00
.arduino-ci.yml 0.1.0 DHT20 2022-01-11 20:48:39 +01:00
DHT20.cpp 0.1.1 DHT20 2022-09-11 11:44:04 +02:00
DHT20.h 0.1.1 DHT20 2022-09-11 11:44:04 +02:00
keywords.txt 0.1.1 DHT20 2022-09-11 11:44:04 +02:00
library.json 0.1.1 DHT20 2022-09-11 11:44:04 +02:00
library.properties 0.1.1 DHT20 2022-09-11 11:44:04 +02:00
LICENSE 0.1.0 DHT20 2022-01-11 20:48:39 +01:00
README.md 0.1.1 DHT20 2022-09-11 11:44:04 +02:00

Arduino CI Arduino-lint JSON check License: MIT GitHub release

DHT20

Arduino library for I2C DHT20 temperature and humidity sensor.

Description

The library must be initiated by calling the begin() function, or begin(dataPin, clockPin) for ESP32 and similar platforms.

Thereafter one has to call the read() function to do the actual reading, and with getTemperature() and getHumidity() to get the measured values. Calling these latter again will return the same values until a new read() is called.

The read() call of this sensor is blocking for 80+ milliseconds (datasheet 7.4) so the library also has a asynchronous interface. See below.

Connection

Always check datasheet

Front view

          +--------------+
  VDD ----| 1            |
  SDA ----| 2    DHT20   |
  GND ----| 3            |
  SCL ----| 4            |
          +--------------+

Tested

Examples verified to work with Arduino UNO and ESP32.

Interface

Constructor

  • DHT20(TwoWire *wire = &Wire) constructor, using a specific Wire (I2C bus).
  • bool begin(uint8_t dataPin, uint8_t clockPin) begin for ESP32 et al, to set I2C bus pins.
  • bool begin() initializer for non ESP32. Returns true if connected.
  • bool isConnected() returns true if the address of the DHT20 can be seen on the I2C bus.

Core

  • int8_t read() read the sensor and store the values internally. It returns the status of the read which should be 0.
  • float getHumidity() returns last Humidity read.
  • float getTemperature() returns last Temperature read.

Offset

  • void setHumOffset(float offset) set an offset to calibrate (1st order) the sensor.
  • float getHumOffset() return current offset, default 0.
  • void setTempOffset(float offset) set an offset to calibrate (1st order) the sensor.
  • float getTempOffset() return current offset, default 0.

Asynchronous interface

Note the async interface is not 100% functional yet. Expect functional complete in 0.2.0.

There are two timings that need to be considdered,

  • time between requests = 1000 ms
  • time between request and data ready.

The async interface allows one to continue processing whatever after a requestData() has been made. Note that there should be at least 1000 milliseconds between subsequent requests.

After DHT20_ACQUISITION_TIME == 85 ms enough time after the request has passed to read the data of the measurement. So the sensor can be read with readData().

To interpret the read bits to temperature, humidity and status one needs to call convert() as last step.

  • int requestData() signals the sensor to make a new measurement. Note there must be at least 1000 milliseconds between requests!
  • int readData() does the actual reading of the data.
  • int convert() converts the read bits to temperature and humidity.

See the example DHT20_async.ino

In the .h file there is a line

#define DHT20_ACQUISITION_TIME      85

This can be used to optimize performance a bit. Use with care.

Miscellaneous

  • uint32_t lastRead() last time the sensor is read in milliseconds since start.
  • uint32_t lastRequest() last time a request is made to make a measurement.
  • int internalStatus() returns the internal status of the sensor. (debug ?).

Return codes

TODO: fix incomplete list

name value
DHT20_OK 00
DHT20_ERROR_CHECKSUM -10
DHT20_ERROR_CONNECT -11
DHT20_MISSING_BYTES -12

Operation

See examples

Future

must

  • update documentation
  • improve the code
    • check return codes etc.
    • add missing error codes
    • read() should check lastRead() and return ERROR_LASTREAD

should

  • test more in detail
    • test on ESP32
  • add examples
    • asynchronous

could

  • improve unit tests.
  • investigate
    • status register bits
    • sensor calibration (website aosong?)
  • check for optimizations.
    • mainly for asynchronous
    • 85 ms wait time?

won't

  • void setIgnoreChecksum(bool = false) ignore checksum flag speeds up communication a bit
  • bool getIgnoreChecksum() get status. for completeness.