Update keyboards/mectechpad/mectechpad.c

Co-authored-by: Joel Challis <git@zvecr.com>
This commit is contained in:
jacksaxi 2025-06-18 15:33:39 +03:00 committed by GitHub
parent 0796dfcb70
commit 48669d130d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,11 +20,3 @@ void housekeeping_task_kb(void) {
gpio_write_pin(LED_PIN_LAYER_2, (get_highest_layer(layer_state) == 2)); gpio_write_pin(LED_PIN_LAYER_2, (get_highest_layer(layer_state) == 2));
gpio_write_pin(LED_PIN_LAYER_3, (get_highest_layer(layer_state) == 3)); gpio_write_pin(LED_PIN_LAYER_3, (get_highest_layer(layer_state) == 3));
} }
// Mask to accommodate the direct pin switch
const matrix_row_t matrix_mask[MATRIX_ROWS] = {
0b111,
0b111,
0b111,
0b001,
};