Update matrix.c

This commit is contained in:
mexsistor 2020-09-21 01:50:41 -05:00 committed by GitHub
parent 9a283f1fbd
commit db5aa80837
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}