mirror of
https://github.com/adafruit/DHT-sensor-library.git
synced 2025-07-29 16:37:16 +02:00
Fix compiler warning: comparison between signed...
... and unsigned integer expressions [-Wsign-compare]
This commit is contained in:
3
DHT.cpp
3
DHT.cpp
@ -26,7 +26,8 @@
|
||||
#include "DHT.h"
|
||||
|
||||
#define MIN_INTERVAL 2000 /**< min interval value */
|
||||
#define TIMEOUT UINT32_MAX /**< Used programmatically for timeout. Not a timeout duration. Type: uint32_t. */
|
||||
#define TIMEOUT UINT32_MAX /**< Used programmatically for timeout. \
|
||||
Not a timeout duration. Type: uint32_t. */
|
||||
|
||||
/*!
|
||||
* @brief Instantiates a new DHT class
|
||||
|
Reference in New Issue
Block a user