keybrd library is an open source library for creating custom-keyboard firmware.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

RowIOE.h 613B

12345678910111213141516171819202122232425262728
  1. #ifndef ROWIOE_H
  2. #define ROWIOE_H
  3. #include <RowBase.h>
  4. #include <RowScanner_PinsBitwise.h>
  5. #include <Debouncer_4Samples.h>
  6. /*
  7. Simlar to Row but using RowScanner_PinsBitwise.
  8. Configuration
  9. -------------
  10. Instantiation
  11. -------------
  12. */
  13. class RowIOE : public RowBase
  14. {
  15. private:
  16. RowScanner_PinsBitwise scanner;
  17. Debouncer_4Samples debouncer;
  18. public:
  19. RowIOE( RowPort& refRowPort, const uint8_t strobePin,
  20. ColPort& refColPort, Key *const ptrsKeys[])
  21. : RowBase(ptrsKeys), scanner(refRowPort, strobePin, refColPort) { }
  22. virtual void process();
  23. };
  24. #endif