├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── DHT11.pdf └── DHT22-AM2302.pdf ├── examples ├── Callback │ └── Callback.ino └── ScheduledCallback │ └── ScheduledCallback.ino ├── keywords.txt ├── library.json ├── library.properties ├── platformio.ini └── src ├── DHT.cpp ├── DHT.h └── DHT.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/README.md -------------------------------------------------------------------------------- /docs/DHT11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/docs/DHT11.pdf -------------------------------------------------------------------------------- /docs/DHT22-AM2302.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/docs/DHT22-AM2302.pdf -------------------------------------------------------------------------------- /examples/Callback/Callback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/examples/Callback/Callback.ino -------------------------------------------------------------------------------- /examples/ScheduledCallback/ScheduledCallback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/examples/ScheduledCallback/ScheduledCallback.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/library.properties -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/DHT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/src/DHT.cpp -------------------------------------------------------------------------------- /src/DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/src/DHT.h -------------------------------------------------------------------------------- /src/DHT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertmelis/DHT/HEAD/src/DHT.hpp --------------------------------------------------------------------------------