├── CMakeLists.txt ├── LICENSE ├── README.md ├── examples ├── Example on C++ │ └── main.cpp └── Example on C │ └── main.c ├── include ├── DHT.h └── DHT.hpp ├── library.json └── src ├── DHT.cpp └── DHT_c.c /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey-m/DHT22-lib-for-esp-idf/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey-m/DHT22-lib-for-esp-idf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey-m/DHT22-lib-for-esp-idf/HEAD/README.md -------------------------------------------------------------------------------- /examples/Example on C++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey-m/DHT22-lib-for-esp-idf/HEAD/examples/Example on C++/main.cpp -------------------------------------------------------------------------------- /examples/Example on C/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey-m/DHT22-lib-for-esp-idf/HEAD/examples/Example on C/main.c -------------------------------------------------------------------------------- /include/DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey-m/DHT22-lib-for-esp-idf/HEAD/include/DHT.h -------------------------------------------------------------------------------- /include/DHT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey-m/DHT22-lib-for-esp-idf/HEAD/include/DHT.hpp -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey-m/DHT22-lib-for-esp-idf/HEAD/library.json -------------------------------------------------------------------------------- /src/DHT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey-m/DHT22-lib-for-esp-idf/HEAD/src/DHT.cpp -------------------------------------------------------------------------------- /src/DHT_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey-m/DHT22-lib-for-esp-idf/HEAD/src/DHT_c.c --------------------------------------------------------------------------------