Improved the encoder push button functionality code to address/fix the switch matrix scanning not working issue.

This commit is contained in:
atechofficials 2024-07-14 02:18:12 +05:30
parent f2831a0aee
commit cdf87c05b0

View File

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