diff options
author | peepeetee <43021794+peepeetee@users.noreply.github.com> | 2022-01-31 03:28:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-30 11:28:04 -0800 |
commit | a1b39e6db231923935055846384eb2e78e538268 (patch) | |
tree | eeaee7335efdff3d9ce960050882acf2cfe570a9 /keyboards/maple_computing/lets_split_eh/keymaps/romus/keymap.c | |
parent | 07bb65384cf96be88feb2916604cb4a89cd0ad33 (diff) |
[Keyboard] move That-Canadian 's boards into /maple_computing (#16050)
Diffstat (limited to 'keyboards/maple_computing/lets_split_eh/keymaps/romus/keymap.c')
-rw-r--r-- | keyboards/maple_computing/lets_split_eh/keymaps/romus/keymap.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/keyboards/maple_computing/lets_split_eh/keymaps/romus/keymap.c b/keyboards/maple_computing/lets_split_eh/keymaps/romus/keymap.c new file mode 100644 index 0000000000..ba5b75a5cf --- /dev/null +++ b/keyboards/maple_computing/lets_split_eh/keymaps/romus/keymap.c @@ -0,0 +1,28 @@ +#include QMK_KEYBOARD_H +#include "romus.h" + + +void matrix_init_keymap (void) { +} + +uint32_t layer_state_set_keymap(uint32_t state) { + + return state; +} + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + // Main Dvorak layer + [_DV] = LAYOUT_letssplit_wrapper(DVORAK), + // Turkish and special character overlay + [_AL] = LAYOUT_letssplit_wrapper(ALTCHAR), + // Gaming layer + [_GA] = LAYOUT_letssplit_wrapper(GAME), + // Numbers layer + [_NU] = LAYOUT_letssplit_wrapper(NUMBERS), + // Settings layer + [_SE] = LAYOUT_letssplit_wrapper(SETTINGS), + // Mouse emulation layer + [_MO] = LAYOUT_letssplit_wrapper(MOUSE), + // Music layer + [_MU] = LAYOUT_letssplit_wrapper(MUSIC), +}; |