forked from mirrors/qmk_userspace
';' for Fn key: send ';' when key realease without using the layer
This commit is contained in:
parent
ba2f31e2cd
commit
34a90769c9
3 changed files with 108 additions and 60 deletions
|
@ -4,10 +4,16 @@
|
|||
#include <stdint.h>
|
||||
#include "usb_keycodes.h"
|
||||
|
||||
int get_layer(void);
|
||||
uint8_t get_keycode(int layer, int row, int col);
|
||||
|
||||
#define MATRIX_ROWS 8
|
||||
#define MATRIX_COLS 8
|
||||
|
||||
|
||||
extern int current_layer;
|
||||
extern bool key_sent;
|
||||
|
||||
|
||||
int get_layer(void);
|
||||
uint8_t get_keycode(int layer, int row, int col);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue