From cdf87c05b01ea296ad7ee93b70839667e6164208 Mon Sep 17 00:00:00 2001 From: atechofficials Date: Sun, 14 Jul 2024 02:18:12 +0530 Subject: [PATCH] Improved the encoder push button functionality code to address/fix the switch matrix scanning not working issue. --- keyboards/protokeeb/rev1/rev1.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/keyboards/protokeeb/rev1/rev1.c b/keyboards/protokeeb/rev1/rev1.c index e796c7381a8..324098da810 100644 --- a/keyboards/protokeeb/rev1/rev1.c +++ b/keyboards/protokeeb/rev1/rev1.c @@ -16,13 +16,13 @@ #include "quantum.h" -// Override the matrix read function to include the encoder button -void matrix_read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row) { - if (current_row == ENCODER_BUTTON_ROW) { - if (gpio_read_pin(ENCODER_BUTTON_PIN) == 0) { - current_matrix[current_row] |= (1 << ENCODER_BUTTON_COL); - } else { - current_matrix[current_row] &= ~(1 << ENCODER_BUTTON_COL); - } +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) { + matrix[ENCODER_BUTTON_ROW] |= (1 << ENCODER_BUTTON_COL); + } else { + matrix[ENCODER_BUTTON_ROW] &= ~(1 << ENCODER_BUTTON_COL); } } \ No newline at end of file