Update keyboards/sthlmkb/storre/matrix.c

Co-authored-by: Ryan <fauxpark@gmail.com>
This commit is contained in:
Moses Hoyt 2024-05-06 09:10:39 +02:00 committed by GitHub
parent 84501d402c
commit f3a49bfa4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,7 +44,7 @@ static void select_col(uint8_t col)
{
for (uint8_t bit = 0; bit < MATRIX_MUX_COLS; bit++) {
uint8_t state = (col & (0b1 << bit)) >> bit;
writePin(col_pins[bit], state);
gpio_write_pin(col_pins[bit], state);
}
}