A replacement for InterruptIn that debounces the interrupt.

Dependents:   D7A_Demo-Get-started CVtoOSCConverter EE3501keypad D7A_Localisation ... more

Fork of DebouncedInterrupt by Anil Kandangath

Example code:

#include "DebouncedInterrupt.h"

DebouncedInterrupt up_button(USER_BUTTON);

void onUp()
{
    // Do Something
}

int main()
{
    // Will immediatly call function and ignore other interrupts until timeout
    up_button.attach(&onUp, IRQ_FALL, 1000, true);

    // Will call function only if button has been held for the specified time
    //up_button.attach(&onUp, IRQ_FALL, 500, false);

    while(1) {}
}
Committer:
kandangath
Date:
Tue Feb 18 05:11:10 2014 +0000
Revision:
3:e4b7033508d1
Parent:
2:a50151994483
Child:
4:19689187352e
Cleanup

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kandangath 0:ca5a0fee9f52 1
kandangath 0:ca5a0fee9f52 2 /**
kandangath 1:ffacad1b455a 3 * Debounces an InterruptIn
kandangath 0:ca5a0fee9f52 4 */
kandangath 0:ca5a0fee9f52 5
kandangath 0:ca5a0fee9f52 6 #ifndef DEBOUNCE_INTERRUPTS_H
kandangath 0:ca5a0fee9f52 7 #define DEBOUNCE_INTERRUPTS_H
kandangath 0:ca5a0fee9f52 8
kandangath 0:ca5a0fee9f52 9 #include <stdint.h>
kandangath 0:ca5a0fee9f52 10 #include "mbed.h"
kandangath 0:ca5a0fee9f52 11
kandangath 0:ca5a0fee9f52 12 class DebounceInterrupts {
kandangath 0:ca5a0fee9f52 13 private:
kandangath 0:ca5a0fee9f52 14 unsigned int fDebounce_us;
kandangath 0:ca5a0fee9f52 15 void (*fCallback)(void);
kandangath 3:e4b7033508d1 16 void _onInterrupt(void);
kandangath 0:ca5a0fee9f52 17 public:
kandangath 2:a50151994483 18 DebounceInterrupts(void (*fptr)(void), /* function to be called after debounced InterruptIn */
kandangath 2:a50151994483 19 InterruptIn *interrupt, /* InterruptIn to monitor */
kandangath 2:a50151994483 20 const bool& rise=true, /* true: rise, false: fall */
kandangath 2:a50151994483 21 const uint32_t& debounce_ms=10); /* stability duration required */
kandangath 0:ca5a0fee9f52 22 ~DebounceInterrupts();
kandangath 0:ca5a0fee9f52 23 };
kandangath 0:ca5a0fee9f52 24 #endif