2016-06-02 15:58:33 +00:00
|
|
|
#ifndef ROW_H
|
|
|
|
#define ROW_H
|
|
|
|
|
|
|
|
#include <RowBase.h>
|
2016-06-06 20:23:40 +00:00
|
|
|
//#include <RowScanner_BitManipulation.h>
|
|
|
|
#include <RowScanner_Arduino.h>
|
2016-06-03 06:12:29 +00:00
|
|
|
#include <Debouncer_4Samples.h>
|
2016-06-02 15:58:33 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Configuration
|
|
|
|
-------------
|
|
|
|
define and initilize DELAY_MICROSECONDS in sketch.
|
2016-06-03 06:12:29 +00:00
|
|
|
const unsigned int RowBase::DELAY_MICROSECONDS = 0;
|
2016-06-02 15:58:33 +00:00
|
|
|
|
|
|
|
Instantiation
|
2016-06-03 06:12:29 +00:00
|
|
|
-------------
|
|
|
|
todo - see Row_DH
|
2016-06-02 15:58:33 +00:00
|
|
|
*/
|
|
|
|
class Row : public RowBase
|
|
|
|
{
|
|
|
|
private:
|
2016-06-06 20:23:40 +00:00
|
|
|
//RowScanner_BitManipulation scanner;
|
|
|
|
RowScanner_Arduino scanner;
|
2016-06-03 06:12:29 +00:00
|
|
|
Debouncer_4Samples debouncer;
|
2016-06-02 15:58:33 +00:00
|
|
|
public:
|
2016-06-06 20:23:40 +00:00
|
|
|
//Row constructor was like Row_DH constructor
|
|
|
|
Row(Key *const ptrsKeys[]) : RowBase(ptrsKeys) { }
|
2016-06-06 06:52:14 +00:00
|
|
|
virtual void process();
|
2016-06-02 15:58:33 +00:00
|
|
|
};
|
|
|
|
#endif
|