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.

Row_ShiftRegisters.cpp 318B

12345678910111213141516
  1. #include "Row_ShiftRegisters.h"
  2. void Row_ShiftRegisters::begin()
  3. {
  4. scanner.begin();
  5. }
  6. uint8_t Row_ShiftRegisters::scan(uint16_t& rowEnd)
  7. {
  8. return scanner.scan(rowEnd);
  9. }
  10. uint8_t Row_ShiftRegisters::debounce(const uint8_t rowState, uint8_t& debounced)
  11. {
  12. return debouncer.debounce(rowState, debounced);
  13. }