mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-04-02 22:10:14 +00:00
Changed readPin function to gpio_read_pin function in rev1.c file because of core change: Renaming Arduino-style GPIO pin functions #23085, #23093
This commit is contained in:
parent
cdf87c05b0
commit
cb54da6861
@ -20,7 +20,7 @@ extern matrix_row_t matrix[]; // Declare the matrix array
|
||||
|
||||
void matrix_scan_kb(void) {
|
||||
// Read the encoder button state and update the matrix
|
||||
if (readPin(ENCODER_BUTTON_PIN) == 0) {
|
||||
if (gpio_read_pin(ENCODER_BUTTON_PIN) == 0) {
|
||||
matrix[ENCODER_BUTTON_ROW] |= (1 << ENCODER_BUTTON_COL);
|
||||
} else {
|
||||
matrix[ENCODER_BUTTON_ROW] &= ~(1 << ENCODER_BUTTON_COL);
|
||||
|
Loading…
Reference in New Issue
Block a user