forked from mirrors/qmk_userspace
hhkb: refactored
This commit is contained in:
parent
9d7979931e
commit
06eb50be07
16 changed files with 354 additions and 217 deletions
15
hhkb/matrix.h
Normal file
15
hhkb/matrix.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef MATRIX_H
|
||||
#define MATRIX_H 1
|
||||
|
||||
#include <stdbool.h>
|
||||
#include "matrix_skel.h"
|
||||
|
||||
|
||||
#define MATRIX_ROWS 8
|
||||
#define MATRIX_COLS 8
|
||||
|
||||
|
||||
extern uint8_t *matrix;
|
||||
extern uint8_t *matrix_prev;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue