Archivé
1
0
Ce dépôt est archivé. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
keybrd/src/Debouncer_Not.h
2016-07-02 15:10:02 -06:00

22 lignes
638 B
C++

#ifndef DEBOUNCER_NOT_H
#define DEBOUNCER_NOT_H
#include <Arduino.h>
#include <inttypes.h>
#include <config_keybrd.h>
#include <DebouncerInterface.h>
/* Debouncer_Not does not debounce.
debounce() returns raw signal, no debouncing is performed.
A keyboard does not need a debouncing if one of the following is true:
* keypad has hardware debouncers
* poling I2C makes scan rate slower than debounce time
* optic switches are used (because they don't bounce)
*/
class Debouncer_Not : public DebouncerInterface
{
public:
virtual read_pins_t debounce(const read_pins_t rawSignal, read_pins_t& debounced);
};
#endif