st-anything/lib/DHT/readme.txt

14 lines
415 B
Plaintext
Raw Normal View History

2023-03-11 14:11:03 +00: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 -