mirror of
https://github.com/adafruit/DHT-sensor-library.git
synced 2023-10-23 22:20:38 +03:00
Merge pull request #160 from Rotzbua/patch-2
Fix compiler warning: comparison between signed...
This commit is contained in:
commit
4f841c64b2
4
DHT.cpp
4
DHT.cpp
@ -26,7 +26,9 @@
|
|||||||
#include "DHT.h"
|
#include "DHT.h"
|
||||||
|
|
||||||
#define MIN_INTERVAL 2000 /**< min interval value */
|
#define MIN_INTERVAL 2000 /**< min interval value */
|
||||||
#define TIMEOUT -1 /**< timeout on */
|
#define TIMEOUT \
|
||||||
|
UINT32_MAX /**< Used programmatically for timeout. \
|
||||||
|
Not a timeout duration. Type: uint32_t. */
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Instantiates a new DHT class
|
* @brief Instantiates a new DHT class
|
||||||
|
Loading…
Reference in New Issue
Block a user