Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

debounce.h 231B

1234567891011121314151617
  1. #ifndef _DEBOUNCE_H_
  2. #define _DEBOUNCE_H_
  3. class Debouncer {
  4. public:
  5. Debouncer(int p);
  6. int poll();
  7. private:
  8. int pin;
  9. int currentState;
  10. int lastState;
  11. unsigned long lastTime;
  12. };
  13. #endif // _DEBOUNCE_H_