ESP_DoubleResetDetector 1.1.0
PlatformIO version 5.0.3
Espressif 8266 2.6.2
In file included from include/reset.h:16:0,
from src/reset.cpp:1:
.pio/libdeps/d1_mini/ESP_DoubleResetDetector/src/ESP_DoubleResetDetector.h: In member function 'void DoubleResetDetector::loop()':
.pio/libdeps/d1_mini/ESP_DoubleResetDetector/src/ESP_DoubleResetDetector.h:184:47: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (waitingForDoubleReset && millis() > timeout)
^
Changing the private int timeout in ESP_DoubleResetDetector.h to e.g. an uint solves the warning.
ESP_DoubleResetDetector 1.1.0 PlatformIO version 5.0.3 Espressif 8266 2.6.2
Changing the private
int timeout
inESP_DoubleResetDetector.h
to e.g. anuint
solves the warning.