diff --git a/DHT.cpp b/DHT.cpp index 0a72b47..23712fb 100644 --- a/DHT.cpp +++ b/DHT.cpp @@ -37,7 +37,8 @@ * @param count * number of sensors */ -DHT::DHT(uint8_t pin, uint8_t type, uint8_t /*count*/) { +DHT::DHT(uint8_t pin, uint8_t type, uint8_t count) { + (void)count; // Workaround to avoid compiler warning. _pin = pin; _type = type; #ifdef __AVR