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"
|
#include "quantum.h"
|
||||||
|
|
||||||
// Override the matrix read function to include the encoder button
|
extern matrix_row_t matrix[]; // Declare the matrix array
|
||||||
void matrix_read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row) {
|
|
||||||
if (current_row == ENCODER_BUTTON_ROW) {
|
void matrix_scan_kb(void) {
|
||||||
if (gpio_read_pin(ENCODER_BUTTON_PIN) == 0) {
|
// Read the encoder button state and update the matrix
|
||||||
current_matrix[current_row] |= (1 << ENCODER_BUTTON_COL);
|
if (readPin(ENCODER_BUTTON_PIN) == 0) {
|
||||||
} else {
|
matrix[ENCODER_BUTTON_ROW] |= (1 << ENCODER_BUTTON_COL);
|
||||||
current_matrix[current_row] &= ~(1 << ENCODER_BUTTON_COL);
|
} else {
|
||||||
}
|
matrix[ENCODER_BUTTON_ROW] &= ~(1 << ENCODER_BUTTON_COL);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user