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_IOE.cpp 250B

1234567891011
  1. #include "Row_IOE.h"
  2. read_pins_t Row_IOE::scan(read_pins_mask_t& rowEnd)
  3. {
  4. return scanner.scan(rowEnd);
  5. }
  6. read_pins_t Row_IOE::debounce(const read_pins_t rowState, read_pins_t& debounced)
  7. {
  8. return debouncer.debounce(rowState, debounced);
  9. }