暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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_