qmk-firmware/keymap.h

14 lines
215 B
C

#ifndef KEYMAP_H
#define KEYMAP_H 1
#include <stdint.h>
#include "usbkeycodes.h"
int get_layer(void);
uint8_t get_keycode(int layer, uint8_t row, uint8_t col);
#define MATRIX_ROWS 9
#define MATRIX_COLS 8
#endif