ade22f8e2c
* initial files for rev 6 with encoder * music map init, dip scan added * adds ws2812 driver for arm * flesh out dip and encoder support * adds default encoder res * adds default encoder res * start muse implementation * muse working with encoder as control * flip direction * try mouse wheel again * dont break other revs * dont break other revs * conditional autio * pwm ws driver (not working) * update build includes for chibios * update ws2812 driver/config * last commit for glasser code * working example * remove rgb for now * finish up rev6 * working encoder keycodes * add warnings to planck keymaps about the LAYOUT
31 lines
780 B
C
Executable File
31 lines
780 B
C
Executable File
/*
|
|
* PLANCK - Dvorak turkish
|
|
* Keymap by @bbaserdem
|
|
* Dvorak layout with multiple features
|
|
* Most of the code is in the "user" directory.
|
|
* Check qmk_firmware/users/bbaserdem for the main part of the code
|
|
*/
|
|
|
|
#pragma message "You may need to add LAYOUT_planck_grid to your keymap layers - see default for an example"
|
|
#include "planck.h"
|
|
#include "bbaserdem.h"
|
|
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
// Main Dvorak layer
|
|
[_DV] = DVORAK,
|
|
// Turkish and special character overlay
|
|
[_AL] = ALTCHAR,
|
|
// Gaming layer
|
|
[_GA] = GAME,
|
|
// Numbers layer
|
|
[_NU] = NUMBERS,
|
|
// Settings layer
|
|
[_SE] = SETTINGS,
|
|
// Mouse emulation layer
|
|
[_MO] = MOUSE,
|
|
#ifdef MUSIC_ENABLE
|
|
// Music mode
|
|
[_MU] = MUSIC,
|
|
#endif
|
|
};
|