]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/planck/keymaps/bbaserdem/keymap.c
Adds support for Planck Rev 6 (#2666)
[qmk_firmware.git] / keyboards / planck / keymaps / bbaserdem / keymap.c
1 /*
2  * PLANCK - Dvorak turkish
3  * Keymap by @bbaserdem
4  * Dvorak layout with multiple features
5  * Most of the code is in the "user" directory.
6  * Check qmk_firmware/users/bbaserdem for the main part of the code
7  */
8
9 #pragma message "You may need to add LAYOUT_planck_grid to your keymap layers - see default for an example"
10 #include "planck.h"
11 #include "bbaserdem.h"
12
13 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
14     // Main Dvorak layer
15     [_DV] = DVORAK,
16     // Turkish and special character overlay
17     [_AL] = ALTCHAR,
18     // Gaming layer
19     [_GA] = GAME,
20     // Numbers layer
21     [_NU] = NUMBERS,
22     // Settings layer
23     [_SE] = SETTINGS,
24     // Mouse emulation layer
25     [_MO] = MOUSE,
26 #ifdef MUSIC_ENABLE
27     // Music mode
28     [_MU] = MUSIC,
29 #endif
30 };