forked from adafruit/DHT-sensor-library
Fix compiler warning: comparison between signed...
... and unsigned integer expressions [-Wsign-compare]
This commit is contained in:
5
DHT.cpp
5
DHT.cpp
@@ -26,8 +26,9 @@
|
|||||||
#include "DHT.h"
|
#include "DHT.h"
|
||||||
|
|
||||||
#define MIN_INTERVAL 2000 /**< min interval value */
|
#define MIN_INTERVAL 2000 /**< min interval value */
|
||||||
#define TIMEOUT UINT32_MAX /**< Used programmatically for timeout. \
|
#define TIMEOUT \
|
||||||
Not a timeout duration. Type: uint32_t. */
|
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
|
||||||
|
Reference in New Issue
Block a user