diff options
| author | Ryan | 2024-03-29 17:57:21 +0100 |
|---|---|---|
| committer | GitHub | 2024-03-29 17:57:21 +0100 |
| commit | d0cf7b85192ce4431bb4c8c57e2d7501df83ac43 (patch) | |
| tree | e182500e7df7bf2886300e53e5c7d7c03b01bb40 /keyboards/geistmaschine/macropod/matrix.c | |
| parent | e891109c4e115a303e109b179bf9d24edbdd7ad7 (diff) | |
Update GPIO expander API naming (#23375)
Diffstat (limited to 'keyboards/geistmaschine/macropod/matrix.c')
| -rw-r--r-- | keyboards/geistmaschine/macropod/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/geistmaschine/macropod/matrix.c b/keyboards/geistmaschine/macropod/matrix.c index 60b1dafe63..ebc10e2e5a 100644 --- a/keyboards/geistmaschine/macropod/matrix.c +++ b/keyboards/geistmaschine/macropod/matrix.c @@ -55,7 +55,7 @@ bool matrix_scan_custom(matrix_row_t current_matrix[]) { pca9555_setup(); } // Read the entire port into this byte, 1 = not pressed, 0 = pressed - bool ret = pca9555_readPins(IC1, PCA9555_PORT0, &pin_states); + bool ret = pca9555_read_pins(IC1, PCA9555_PORT0, &pin_states); // Update state if (ret) { |