This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2016-06-10 01:31:24 +00:00
|
|
|
#include "Row_IOE.h"
|
2016-06-02 15:58:33 +00:00
|
|
|
|
2016-06-22 02:40:35 +00:00
|
|
|
read_pins_t Row_IOE::scan(read_pins_mask_t& rowEnd)
|
2016-06-05 22:16:47 +00:00
|
|
|
{
|
2016-06-10 03:11:18 +00:00
|
|
|
return scanner.scan(rowEnd);
|
|
|
|
}
|
2016-06-05 22:16:47 +00:00
|
|
|
|
2016-06-22 02:40:35 +00:00
|
|
|
read_pins_t Row_IOE::debounce(const read_pins_t rowState, read_pins_t& debounced)
|
2016-06-10 03:11:18 +00:00
|
|
|
{
|
|
|
|
return debouncer.debounce(rowState, debounced);
|
2016-06-05 22:16:47 +00:00
|
|
|
}
|