You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
5.5 KiB

  1. #include QMK_KEYBOARD_H
  2. #ifdef RGBLIGHT_ENABLE
  3. //Following line allows macro to read current RGB settings
  4. extern rgblight_config_t rgblight_config;
  5. #endif
  6. #define LOWER MO(_LOWER)
  7. #define RAISE MO(_RAISE)
  8. #define ESC_CTL LCTL_T(KC_ESC)
  9. // Each layer gets a name for readability, which is then used in the keymap matrix below.
  10. // The underscores don't mean anything - you can have a layer called STUFF or any other name.
  11. // Layer names don't all need to be of the same length, obviously, and you can also skip them
  12. // entirely and just use numbers.
  13. enum crkbd_layers {
  14. _DVORAK,
  15. _LOWER,
  16. _RAISE,
  17. _ADJUST
  18. };
  19. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  20. [_DVORAK] = LAYOUT_split_3x6_3( \
  21. //,-----------------------------------------------. ,-----------------------------------------------.
  22. KC_TAB, KC_QUOT,KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH,\
  23. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  24. ESC_CTL, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINUS,\
  25. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  26. KC_LSFT,KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z,KC_SFTENT,\
  27. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  28. KC_LGUI, LOWER, KC_SPC, KC_BSPC, RAISE,KC_RALT \
  29. //`-----------------------' `----------------------'
  30. ),
  31. [_LOWER] = LAYOUT_split_3x6_3( \
  32. //,-----------------------------------------------. ,-----------------------------------------------.
  33. KC_TILD,KC_EXLM, KC_AT, KC_HASH, KC_DLR,KC_PERC, KC_CIRC,KC_AMPR,KC_ASTR,KC_LPRN,KC_RIGHT,KC_RPRN,\
  34. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  35. _______,KC_VOLD,KC_VOLU,KC_MPRV,KC_MPLY,KC_MNXT, _______,KC_LEFT,KC_PLUS,KC_LCBR,KC_RCBR,KC_PIPE,\
  36. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  37. _______,_______,_______,KC_DOWN, KC_UP, _______, _______,_______,_______,KC_HOME, KC_END,_______,\
  38. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  39. _______,_______,_______, KC_DEL,_______,_______ \
  40. //`-----------------------' `----------------------'
  41. ),
  42. [_RAISE] = LAYOUT_split_3x6_3( \
  43. //,-----------------------------------------------. ,-----------------------------------------------.
  44. KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9,KC_RIGHT, KC_0, \
  45. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  46. _______,_______,_______,_______,_______,_______, _______,KC_LEFT, KC_EQL,KC_LBRC,KC_RBRC,KC_BSLS,\
  47. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  48. _______,_______,_______,KC_DOWN, KC_UP, _______, _______,_______,_______,KC_PGUP,KC_PGDN,_______,\
  49. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  50. _______,_______,_______, KC_DEL ,_______,_______ \
  51. //`-----------------------' `----------------------'
  52. ),
  53. [_ADJUST] = LAYOUT_split_3x6_3( \
  54. //,-----------------------------------------------. ,-----------------------------------------------.
  55. RGB_TOG,RGB_HUI,RGB_SAI,RGB_VAI,_______,RGB_M_T, _______,_______,_______,_______,KC_RIGHT,_______,\
  56. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  57. RGB_MOD,RGB_HUD,RGB_SAD,RGB_VAD,_______,_______, _______,KC_LEFT,_______,_______,_______,_______,\
  58. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  59. _______,KC_PSCR,_______,KC_DOWN, KC_UP, _______, _______,_______,_______,_______,_______,_______,\
  60. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  61. _______,_______,_______, KC_DEL ,_______,_______ \
  62. //`-----------------------' `----------------------'
  63. )
  64. };
  65. layer_state_t layer_state_set_user(layer_state_t state) {
  66. return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
  67. }
  68. #ifdef OLED_DRIVER_ENABLE
  69. oled_rotation_t oled_init_user(oled_rotation_t rotation) {
  70. if (!is_keyboard_left())
  71. return OLED_ROTATION_180; // flips the display 180 to see it from my side
  72. return rotation;
  73. }
  74. const char *read_logo(void);
  75. void oled_task_user(void){
  76. switch (biton32(layer_state)){
  77. case _DVORAK:
  78. oled_write_ln_P(PSTR("DVRK"), false);
  79. break;
  80. case _LOWER:
  81. oled_write_ln_P(PSTR("LOWER"), false);
  82. break;
  83. case _RAISE:
  84. oled_write_ln_P(PSTR("RAISE"), false);
  85. break;
  86. case _ADJUST:
  87. oled_write_ln_P(PSTR("ADJST"), false);
  88. break;
  89. default:
  90. oled_write_ln_P(PSTR("?????"), false);
  91. }
  92. //now print logo
  93. oled_write(read_logo(), false);
  94. }
  95. #endif