Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

ESP8266_RTOS_SDK library for DHT11, DHT22 or SI7021

License

NotificationsYou must be signed in to change notification settings

Fonger/ESP8266-RTOS-DHT

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ESP8266_RTOS_SDK library for DHT11, DHT22 or SI7021.This is a port from esp-open-rtos for espressif official SDK ESP8266_RTOS_SDK.

Compatibility

espressif/ESP8266_RTOS_SDK v3.2+

Usage

Clone this project in your components folder.

#include<stdio.h>#include<freertos/FreeRTOS.h>#include<freertos/task.h>#include<esp_err.h>#include<dht/dht.h>#defineDHT_GPIO 5 // D1 pinvoidtemperature_task(void*arg){ESP_ERROR_CHECK(dht_init(DHT_GPIO, false));vTaskDelay(2000 /portTICK_PERIOD_MS);while (1)    {inthumidity=0;inttemperature=0;if (dht_read_data(DHT_TYPE_DHT22,DHT_GPIO,&humidity,&temperature)==ESP_OK) {// e.g. in dht22, 604 = 60.4%, 252 = 25.2 C// If you want to print float data, you should run `make menuconfig`// to enable full newlib and call dht_read_float_data() here insteadprintf("Humidity: %d Temperature: %d\n",humidity,temperature);        }else {printf("Fail to get dht temperature data\n");        }vTaskDelay(5000 /portTICK_PERIOD_MS);    }vTaskDelete(NULL);}voidapp_main() {xTaskCreate(temperature_task,"temperature task",2048,NULL,tskIDLE_PRIORITY,NULL);}

About

ESP8266_RTOS_SDK library for DHT11, DHT22 or SI7021

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors2

  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp