1
0
tmk_keyboard/keymap.h

14 lines
215 B
C
Raw Normal View History

2010-08-22 14:58:37 +00:00
#ifndef KEYMAP_H
#define KEYMAP_H 1
#include <stdint.h>
#include "usbkeycodes.h"
2010-09-16 12:05:15 +00:00
int get_layer(void);
uint8_t get_keycode(int layer, uint8_t row, uint8_t col);
2010-08-22 14:58:37 +00:00
#define MATRIX_ROWS 9
#define MATRIX_COLS 8
2010-08-22 14:58:37 +00:00
#endif