├── .github └── workflows │ └── main.yml ├── .travis.yml ├── DHTesp.cpp ├── DHTesp.h ├── LICENSE ├── README.md ├── examples ├── DHT_ESP32 │ ├── .esp8266.test.skip │ └── DHT_ESP32.ino ├── DHT_ESP8266 │ ├── .esp32.test.skip │ └── DHT_ESP8266.ino └── DHT_Multi_ESP32 │ ├── .esp8266.test.skip │ └── DHT_Multi_ESP32.ino ├── keywords.txt ├── library.json └── library.properties /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beegee-tokyo/DHTesp/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beegee-tokyo/DHTesp/HEAD/.travis.yml -------------------------------------------------------------------------------- /DHTesp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beegee-tokyo/DHTesp/HEAD/DHTesp.cpp -------------------------------------------------------------------------------- /DHTesp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beegee-tokyo/DHTesp/HEAD/DHTesp.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beegee-tokyo/DHTesp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beegee-tokyo/DHTesp/HEAD/README.md -------------------------------------------------------------------------------- /examples/DHT_ESP32/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/DHT_ESP32/DHT_ESP32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beegee-tokyo/DHTesp/HEAD/examples/DHT_ESP32/DHT_ESP32.ino -------------------------------------------------------------------------------- /examples/DHT_ESP8266/.esp32.test.skip: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/DHT_ESP8266/DHT_ESP8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beegee-tokyo/DHTesp/HEAD/examples/DHT_ESP8266/DHT_ESP8266.ino -------------------------------------------------------------------------------- /examples/DHT_Multi_ESP32/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/DHT_Multi_ESP32/DHT_Multi_ESP32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beegee-tokyo/DHTesp/HEAD/examples/DHT_Multi_ESP32/DHT_Multi_ESP32.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beegee-tokyo/DHTesp/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beegee-tokyo/DHTesp/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beegee-tokyo/DHTesp/HEAD/library.properties --------------------------------------------------------------------------------