mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-03-10 13:38:25 +00:00
Update matrix.c
This commit is contained in:
parent
9a283f1fbd
commit
db5aa80837
@ -256,3 +256,14 @@ static bool read_encoder_switches(matrix_row_t current_matrix[], uint8_t current
|
||||
|
||||
return (last_row_value != current_matrix[current_row]);
|
||||
}
|
||||
void matrix_init_custom(void) {
|
||||
// TODO: initialize hardware here
|
||||
}
|
||||
|
||||
bool matrix_scan_custom(matrix_row_t current_matrix[]) {
|
||||
bool matrix_has_changed = false;
|
||||
|
||||
// TODO: add matrix scanning routine here
|
||||
|
||||
return matrix_has_changed;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user