blob: a85b626c65a729904b7f15ef74822a0fbe5b1d50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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
|