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.

12345678910
  1. /* debounce() sets debounced and returns debouncedChanged. All variables are bitwise.
  2. For parameter, 1 means pressed, 0 means released.
  3. For return, 1 means debounced changed.
  4. */
  5. #include "Row.h"
  6. uint8_t Row::debounce(const uint8_t rowState)
  7. {
  8. return debouncer.debounce(rowState, debounced);
  9. }