mirror of
https://github.com/moparisthebest/tmk_keyboard
synced 2024-11-04 08:25:01 -05: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 9
|
|
#define MATRIX_COLS 8
|
|
|
|
#endif
|