mirror of
https://github.com/moparisthebest/tmk_keyboard
synced 2024-10-31 15:35:01 -04:00
14 lines
208 B
C
14 lines
208 B
C
|
#ifndef KEYMAP_H
|
||
|
#define KEYMAP_H 1
|
||
|
|
||
|
#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
|
||
|
|
||
|
#endif
|