Coder Social home page Coder Social logo

dht22-cpp's Introduction

DHT22 / AM2302 cpp library for ESP32 (ESP-IDF)

Forked from DHT-source.
This is an ESP32 cpp (esp-idf) library for the DHT22 low cost temperature/humidity sensors.

Jun 2017: Ricardo Timmermann, new for DHT22.

This lib is the cpp version of one in the DHT22 repo.

Running DHT22

Create folder components in main project directory. In this folder run:

$ git clone https://github.com/gosouth/DHT22-cpp.git
$ git clone https://github.com/lombo-cmyk/EspEthW5500Modbus.git

USE

See main.cpp

#define DHT_PIN GPIO_NUM_23
extern "C" {
void app_main();
}
void DHT_task(void *pvParameter)
{

    DHT(DHT_PIN);
    printf( "Starting DHT Task\n\n");

    while(true) {

        printf("=== Reading DHT ===\n" );
        int ret = dht.ReadDHT();

        dht.ErrorHandler(ret);

        printf( "Hum %.1f\n", dht.GetHumidity() );
        printf( "Tmp %.1f\n", dht.GetTemperature() );

        // -- wait at least 2 sec before reading again ------------
        // The interval of whole process must be beyond 2 seconds !!
        vTaskDelay( 3000 / portTICK_RATE_MS );
    }
}

void app_main()
{
    nvs_flash_init();
    vTaskDelay( 1000 / portTICK_RATE_MS );
    xTaskCreate( &DHT_task, "DHT_task", 2048, NULL, 5, NULL );
}

dht22-cpp's People

Contributors

gosouth avatar igrr avatar lombo-cmyk avatar projectgus avatar spritetm avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.