GY-63_MS5611/libraries/DHTstable
2016-12-17 20:53:18 +01:00
..
examples + add samples to DHTstable 2015-08-20 23:02:36 +02:00
dht.cpp Version 0.1.13 2015-07-04 18:53:13 +02:00
dht.h Version 0.1.13 2015-07-04 18:53:13 +02:00
library.json added library.json files 2016-12-17 20:53:18 +01:00
readme.txt added note for multitheading use 2015-10-12 20:58:41 +02:00

This is the 0.1.13 version of the DHTlib. 
This version is stable for both ARM and AVR.

You can use most examples from https://github.com/RobTillaart/Arduino/tree/master/libraries/DHTlib/examples

update 2015-10-12:
For multithreading environments for Arduino one could replace
    delay(wakeupDelay);
with
    delayMicroseconds(wakeupDelay * 1000UL);
see also - https://github.com/RobTillaart/Arduino/pull/25 -