Skip to content

Commit 304008c

Browse files
authored
Remove debug code
Removes debug code that I forgot. Former-commit-id: 4e631a0
1 parent eddaf5c commit 304008c

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

libraries/RTC/examples/RTC_PeriodicExample/RTC_PeriodicExample.ino

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,26 +39,26 @@ void setup() {
3939
}
4040

4141
void loop() {
42-
Serial.println(RTC.setPeriodicCallback(periodicCallback, Period::ONCE_EVERY_1_SEC));
42+
RTC.setPeriodicCallback(periodicCallback, Period::ONCE_EVERY_1_SEC);
4343
delay(BLINK_DELAY);
44-
Serial.println(RTC.setPeriodicCallback(periodicCallback, Period::N2_TIMES_EVERY_SEC));
44+
RTC.setPeriodicCallback(periodicCallback, Period::N2_TIMES_EVERY_SEC);
4545
delay(BLINK_DELAY);
46-
Serial.println(RTC.setPeriodicCallback(periodicCallback, Period::N4_TIMES_EVERY_SEC));
46+
RTC.setPeriodicCallback(periodicCallback, Period::N4_TIMES_EVERY_SEC);
4747
delay(BLINK_DELAY);
48-
Serial.println(RTC.setPeriodicCallback(periodicCallback, Period::N8_TIMES_EVERY_SEC));
48+
RTC.setPeriodicCallback(periodicCallback, Period::N8_TIMES_EVERY_SEC);
4949
delay(BLINK_DELAY);
50-
Serial.println(RTC.setPeriodicCallback(periodicCallback, Period::N16_TIMES_EVERY_SEC));
50+
RTC.setPeriodicCallback(periodicCallback, Period::N16_TIMES_EVERY_SEC);
5151
delay(BLINK_DELAY);
52-
Serial.println(RTC.setPeriodicCallback(periodicCallback, Period::N32_TIMES_EVERY_SEC));
52+
RTC.setPeriodicCallback(periodicCallback, Period::N32_TIMES_EVERY_SEC);
5353
delay(BLINK_DELAY);
54-
Serial.println(RTC.setPeriodicCallback(periodicCallback, Period::N16_TIMES_EVERY_SEC));
54+
RTC.setPeriodicCallback(periodicCallback, Period::N16_TIMES_EVERY_SEC);
5555
delay(BLINK_DELAY);
56-
Serial.println(RTC.setPeriodicCallback(periodicCallback, Period::N8_TIMES_EVERY_SEC));
56+
RTC.setPeriodicCallback(periodicCallback, Period::N8_TIMES_EVERY_SEC);
5757
delay(BLINK_DELAY);
58-
Serial.println(RTC.setPeriodicCallback(periodicCallback, Period::N4_TIMES_EVERY_SEC));
58+
RTC.setPeriodicCallback(periodicCallback, Period::N4_TIMES_EVERY_SEC);
5959
delay(BLINK_DELAY);
60-
Serial.println(RTC.setPeriodicCallback(periodicCallback, Period::N2_TIMES_EVERY_SEC));
60+
RTC.setPeriodicCallback(periodicCallback, Period::N2_TIMES_EVERY_SEC);
6161
delay(BLINK_DELAY);
62-
Serial.println(RTC.setPeriodicCallback(periodicCallback, Period::ONCE_EVERY_1_SEC));
62+
RTC.setPeriodicCallback(periodicCallback, Period::ONCE_EVERY_1_SEC);
6363
delay(BLINK_DELAY);
6464
}

0 commit comments

Comments
 (0)