mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-04-04 21:05:41 +00:00
Improved the encoder push button functionality code to address/fix the switch matrix scanning not working issue.
This commit is contained in:
parent
f2831a0aee
commit
cdf87c05b0
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user