We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 904c0bc commit 92916f1Copy full SHA for 92916f1
src/timer.cpp
@@ -13,10 +13,6 @@ bool ticked() {
13
14
int delay = getInterval();
15
int delta = millis() - g_previousMillis;
16
- // Serial.print("delay:");
17
- // Serial.print(delay);
18
- // Serial.print(" delta:");
19
- // Serial.println(delta);
20
bool ok = delta >= delay;
21
if (ok) {
22
g_previousMillis = millis();
0 commit comments