diff options
author | tmk <nobody@nowhere> | 2010-08-22 23:58:37 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2010-08-23 00:01:42 +0900 |
commit | 8cfb3712d58e4a88029dfd00111714e91939005e (patch) | |
tree | 4650383eac715a84419e678e0e990c99a7423907 /keymap.h | |
parent | 20711b59e7b72d0a1875c3d38832fade6f56445d (diff) |
matrix scan & default keymap
Diffstat (limited to 'keymap.h')
-rw-r--r-- | keymap.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/keymap.h b/keymap.h new file mode 100644 index 0000000000..bf6e472404 --- /dev/null +++ b/keymap.h @@ -0,0 +1,9 @@ +#ifndef KEYMAP_H +#define KEYMAP_H 1 + +#include <stdint.h> +#include "usbkeycodes.h" + +uint8_t get_keycode(uint8_t row, uint8_t col); + +#endif |