Skip to content

Commit dea2382

Browse files
committed
While Schedule.cpp is not part of ESP32 core...
1 parent eb17194 commit dea2382

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

libraries/ESP32/examples/GPIO/FunctionalInterrupt/FunctionalInterrupt.ino

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <Arduino.h>
2-
#include <Schedule.h>
2+
#include "Schedule.h"
33
#include "FunctionalInterrupts.h"
44

55
#if defined(ESP32)
@@ -78,4 +78,6 @@ void setup() {
7878
void loop() {
7979
button1->checkPressed();
8080
button2->checkPressed();
81+
82+
run_scheduled_functions();
8183
}

libraries/ESP32/examples/GPIO/FunctionalInterrupt/FunctionalInterrupts.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include "FunctionalInterrupts.h"
2-
#include <Schedule.h>
2+
#include "Schedule.h"
33
#include <Arduino.h>
44

55
void ICACHE_RAM_ATTR interruptFunctional(void* arg)

0 commit comments

Comments
 (0)