FloKra d9e47579fd 0.5.0 2020-01-09 4 years ago
..
.github d9e47579fd 0.5.0 2020-01-09 4 years ago
examples d9e47579fd 0.5.0 2020-01-09 4 years ago
.gitignore d9e47579fd 0.5.0 2020-01-09 4 years ago
.travis.yml d9e47579fd 0.5.0 2020-01-09 4 years ago
CONTRIBUTING.md d9e47579fd 0.5.0 2020-01-09 4 years ago
DHT.cpp d9e47579fd 0.5.0 2020-01-09 4 years ago
DHT.h d9e47579fd 0.5.0 2020-01-09 4 years ago
README.md d9e47579fd 0.5.0 2020-01-09 4 years ago
keywords.txt d9e47579fd 0.5.0 2020-01-09 4 years ago
library.properties d9e47579fd 0.5.0 2020-01-09 4 years ago

README.md

Adafruit DHT Humidity & Temperature Sensor Library Build Status

Description

An Arduino library for the DHT series of low-cost temperature/humidity sensors.

You can find DHT tutorials here.

Installation

First Method

image

  1. In the Arduino IDE, navigate to Sketch > Include Library > Manage Libraries
  2. Then the Library Manager will open and you will find a list of libraries that are already installed or ready for installation.
  3. Then search for DHT-sensor using the search bar.
  4. Click on the text area and then select the specific version and install it.

Second Method

  1. Navigate to the Releases page.
  2. Download the latest release.
  3. Extract the zip file
  4. In the Arduino IDE, navigate to Sketch > Include Library > Add .ZIP Library

Requirements

This library depends on Adafruit Unified Sensor Library. To use this library the user must download the required library.

Features

  • Inexpensive

    This library is used with low-cost temperature and humidity sensors, for example, DHT11 and DHT22. This library is free of cost and the only cost is of the sensors.

  • Compatible

    DHT sensor library is compatible with multiple low-cost temperature and humidity sensors like DHT11 and DHT22. A few examples are implemented just to demonstrate how to modify the code for different sensors.

  • Function calls

    Basic functions of the low-cost temperature/humidity sensors have been implemented in this library. There's no need to re-implement these functions from scratch. The user simply has to import the library in the project and can use any of its functions by just calling it.

  • Give back

    The library is free, you don’t have to pay for anything. However, if you want to support the development, or just thank the author of the library by purchasing products from Adafruit!

    Not only you’ll encourage the development of the library, but you’ll also learn how to best use the library and probably some C++ too

  • MIT License

    DHT sensor library is open-source and uses one of the most permissive licenses so you can use it on any project.

    • Commercial use
    • Modification
    • Distribution
    • Private use

Functions

  • begin()
  • readTemperature()
  • convertCtoF()
  • convertFtoC()
  • readHumidity()
  • computeHeatIndex()
  • read()
  • expectPulse()

Example

Examples include both a "standalone" DHT example and one that works along with the Adafruit Unified Sensor Library. A Unified sensor library is required even if using the standalone version. You can find other examples from Github-DHT-sensor-library.

#include "DHT.h"

#define DHTPIN 2
#define DHTTYPE DHT22
DHT dht(DHTPIN, DHTTYPE);

void setup() {
  Serial.begin(9600);
  Serial.println(F("DHTxx test!"));

  dht.begin();
}

void loop() {
  delay(2000);

  float h = dht.readHumidity();
  float t = dht.readTemperature();
  float f = dht.readTemperature(true);

  if (isnan(h) || isnan(t) || isnan(f)) {
    Serial.println(F("Failed to read from DHT sensor!"));
    return;
  }

  float hif = dht.computeHeatIndex(f, h);
  float hic = dht.computeHeatIndex(t, h, false);

  Serial.print(F("Humidity: "));
  Serial.print(h);
  Serial.print(F("%  Temperature: "));
  Serial.print(t);
  Serial.print(F("°C "));
  Serial.print(f);
  Serial.print(F("°F  Heat index: "));
  Serial.print(hic);
  Serial.print(F("°C "));
  Serial.print(hif);
  Serial.println(F("°F"));
}

Contributing

If you want to contribute to this project:

  • Report bugs and errors
  • Ask for enhancements
  • Create issues and pull requests
  • Tell others about this library
  • Contribute new protocols

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Credits

The author and maintainer of this library is Adafruit info@adafruit.com

Based on previous work by:

  • T. DiCola
  • P. Y. Dragon
  • L. Fried
  • J. Hoffmann
  • M. Kooijman
  • J. M. Dana
  • S. Conaway
  • S. IJskes
  • T. Forbes
  • B. C
  • T. J Myers
  • L. Sørup
  • per1234
  • O. Duffy
  • matthiasdanner
  • J. Lim
  • G. Ambrozio
  • chelmi
  • adams13x13
  • Spacefish
  • I. Scheller
  • C. Miller
  • 7eggert

License

This library is licensed under MIT license.