#ifndef ROW_H #define ROW_H #include #include #include #include #include #include #include /* strobePin has one of two formats: 1. if strobe pin is on uC (Scanner_uC or Scanner_ShiftRegsRead), then strobePin is an Arduino pin number connected to this row. 2. if strobe pin is on I/O expander (Scanner_IOE), then strobePin is bit pattern, 1 indicating the I/O expander pin connected to this row todo instantiation examples - here or in Scanner? */ class Row { private: virtual void keyWasPressed(); protected: void send(const uint8_t keyCount, const read_pins_t debouncedChanged); ScannerInterface& refScanner; const uint8_t strobePin; //pin connected to this row (details above) private: Key *const *const ptrsKeys; //array of Key pointers protected: const uint8_t keyCount; //number of read pins //Debouncer_Samples debouncer; Debouncer_Not debouncer; //todo read_pins_t debounced; //bit pattern, state of keys after debouncing, 1=pressed, 0=released public: Row(ScannerInterface& refScanner, const uint8_t strobePin, Key* const ptrsKeys[], const uint8_t keyCount); virtual void process(); }; #endif