keybrd library is an open source library for creating custom-keyboard firmware.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

DebouncerInterface.h 318B

1234567891011121314
  1. #ifndef DEBOUNCERINTERFACE_H
  2. #define DEBOUNCERINTERFACE_H
  3. #include "config_keybrd.h"
  4. /*
  5. debounce() takes rawSignal and returns debounced signal. Signals are bit paterns.
  6. */
  7. class DebouncerInterface
  8. {
  9. public:
  10. virtual read_pins_t debounce(const read_pins_t rawSignal, read_pins_t& debounced)=0;
  11. };
  12. #endif