#ifndef _DEBOUNCE_H_ #define _DEBOUNCE_H_ class Debouncer { public: Debouncer(int p); int poll(); private: int pin; int currentState; int lastState; unsigned long lastTime; }; #endif // _DEBOUNCE_H_