mirror of
https://github.com/firewalkwithm3/qmk_firmware.git
synced 2024-11-22 19:40:29 +08:00
11 lines
230 B
C
11 lines
230 B
C
#include <stdbool.h>
|
|
|
|
extern uint8_t *matrix;
|
|
extern uint8_t *matrix_prev;
|
|
|
|
void matrix_init(void);
|
|
uint8_t matrix_scan(void);
|
|
bool matrix_is_modified(void);
|
|
bool matrix_has_ghost(void);
|
|
bool matrix_has_ghost_in_row(uint8_t row);
|