Archivado
1
0
Este repositorio está archivado. Usted puede ver los archivos y clonarlos, pero no puede hace push o abrir incidencias o pull requests.
keybrd/src/ScannerInterface.h

15 líneas
284 B
C
Original Vista normal Histórico

#ifndef SCANNERINTERFACE_H
#define SCANNERINTERFACE_H
#include <config_keybrd.h>
/* scan() retuns state of readPins.
*/
class ScannerInterface
{
public:
virtual void init(const uint8_t strobePin)=0;
virtual read_pins_t scan(const uint8_t strobePin)=0;
};
#endif