qmk-firmware/keymap.h

14 lines
208 B
C
Raw Normal View History

2010-08-22 14:58:37 +00:00
#ifndef KEYMAP_H
#define KEYMAP_H 1
#include <stdint.h>
2010-09-30 05:17:01 +00:00
#include "usb_keycodes.h"
2010-08-22 14:58:37 +00:00
2010-09-16 12:05:15 +00:00
int get_layer(void);
2010-09-26 13:42:37 +00:00
uint8_t get_keycode(int layer, int row, int 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