diff options
Diffstat (limited to 'keymap.h')
-rw-r--r-- | keymap.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,8 @@ #include <stdint.h> #include "usbkeycodes.h" -uint8_t get_keycode(uint8_t row, uint8_t col); +int get_layer(void); +uint8_t get_keycode(int layer, uint8_t row, uint8_t col); #define MATRIX_ROWS 9 #define MATRIX_COLS 8 |