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 e890169 commit 6a68609Copy full SHA for 6a68609
examples/sandbox/sandbox.ino
@@ -284,11 +284,11 @@ void setup() {
284
LedCtrl.startupCycle();
285
286
// Set PD2 as input (button)
287
- pinConfigure(PIN_PD2, PIN_DIR_INPUT | PIN_INT_FALL);
+ pinConfigure(PIN_PD2, PIN_DIR_INPUT);
288
attachInterrupt(PIN_PD2, sendHeartbeatInterrupt, FALLING);
289
290
// Set PF6 as input (reset button)
291
- pinConfigure(PIN_PF6, PIN_DIR_INPUT | PIN_INT_FALL);
+ pinConfigure(PIN_PF6, PIN_DIR_INPUT);
292
attachInterrupt(PIN_PF6, resetInterrupt, FALLING);
293
294
sei();
0 commit comments