Skip to content

Commit 44a80e0

Browse files
authored
Fix compiler warning unused parameter...
...'count' [-Wunused-parameter]
1 parent 6a843cb commit 44a80e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DHT.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* @param count
3838
* number of sensors
3939
*/
40-
DHT::DHT(uint8_t pin, uint8_t type, uint8_t count) {
40+
DHT::DHT(uint8_t pin, uint8_t type, uint8_t /*count*/) {
4141
_pin = pin;
4242
_type = type;
4343
#ifdef __AVR

0 commit comments

Comments
 (0)