Archived
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
keybrd/src/Row_IOE.cpp

12 lines
226 B
C++
Raw Normal View History

#include "Row_IOE.h"
2016-06-10 03:11:18 +00:00
uint8_t Row_IOE::scan(uint16_t& rowEnd)
{
2016-06-10 03:11:18 +00:00
return scanner.scan(rowEnd);
}
2016-06-10 03:11:18 +00:00
uint8_t Row_IOE::debounce(const uint8_t rowState, uint8_t& debounced)
{
return debouncer.debounce(rowState, debounced);
}