2010-08-22 14:58:37 +00:00
|
|
|
#ifndef KEYMAP_H
|
|
|
|
#define KEYMAP_H 1
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "usbkeycodes.h"
|
|
|
|
|
|
|
|
uint8_t get_keycode(uint8_t row, uint8_t col);
|
|
|
|
|
2010-08-23 06:46:24 +00:00
|
|
|
#define MATRIX_ROWS 9
|
|
|
|
#define MATRIX_COLS 8
|
|
|
|
|
2010-08-22 14:58:37 +00:00
|
|
|
#endif
|