We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb17194 commit dea2382Copy full SHA for dea2382
libraries/ESP32/examples/GPIO/FunctionalInterrupt/FunctionalInterrupt.ino
@@ -1,5 +1,5 @@
1
#include <Arduino.h>
2
-#include <Schedule.h>
+#include "Schedule.h"
3
#include "FunctionalInterrupts.h"
4
5
#if defined(ESP32)
@@ -78,4 +78,6 @@ void setup() {
78
void loop() {
79
button1->checkPressed();
80
button2->checkPressed();
81
+
82
+ run_scheduled_functions();
83
}
libraries/ESP32/examples/GPIO/FunctionalInterrupt/FunctionalInterrupts.cpp
void ICACHE_RAM_ATTR interruptFunctional(void* arg)
0 commit comments