アーカイブ
1
0
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
keybrd/src/ScannerInterface.h

15 行
284 B
C++

#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