Merge pull request #160 from Rotzbua/patch-2

Fix compiler warning: comparison between signed...
This commit is contained in:
Limor "Ladyada" Fried 2020-05-21 11:58:36 -04:00 committed by GitHub
commit 4f841c64b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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