Archived
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
keybrd/src/DebouncerInterface.h
2016-09-28 14:37:40 -06:00

15 lines
318 B
C++

#ifndef DEBOUNCERINTERFACE_H
#define DEBOUNCERINTERFACE_H
#include <config_keybrd.h>
/*
debounce() takes rawSignal and returns debounced signal. Signals are bit paterns.
*/
class DebouncerInterface
{
public:
virtual read_pins_t debounce(const read_pins_t rawSignal, read_pins_t& debounced)=0;
};
#endif