#ifndef PORTREAD_H #define PORTREAD_H #include #include /* PortRead is an abstract base class. Port classes are the keybrd library's interface to microcontroller ports or I/O expander ports. */ class PortRead { protected: const uint8_t readPins; //bitwise pin configuration, 1 means read column public: PortRead(const uint8_t readPins): readPins(readPins) {} virtual uint8_t read()=0; }; #endif