images, docks, clean-up [skip ci]
This commit is contained in:
parent
d707738616
commit
ce01f88c43
13 changed files with 367 additions and 2 deletions
19
keyboards/lets_split/uno_slave/uno-matrix.h
Normal file
19
keyboards/lets_split/uno_slave/uno-matrix.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#ifndef UNO_MATRIX
|
||||
#define UNO_MATRIX
|
||||
|
||||
#define MATRIX_ROWS 4
|
||||
#define MATRIX_COLS 6
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef uint8_t matrix_row_t;
|
||||
|
||||
uint8_t matrix_rows(void);
|
||||
uint8_t matrix_cols(void);
|
||||
void matrix_init(void);
|
||||
uint8_t matrix_scan(void);
|
||||
bool matrix_is_modified(void);
|
||||
bool matrix_is_on(uint8_t row, uint8_t col);
|
||||
matrix_row_t matrix_get_row(uint8_t row);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue