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.

181 lines
8.6 KiB

  1. /*
  2. Copyright 2019 @foostan
  3. Copyright 2020 Drashna Jaelre <@drashna>
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. // INSTRUCTIONS
  16. // clone repo https://github.com/qmk/qmk_firmware into ~/qmk_firmware
  17. // copy this file into ~/qmk_firmware/keyboards/crkbd/keymaps/default/keymap.c
  18. // copy qmk.ini into ~/
  19. // once keyboard connected, execute:
  20. // > qmk flash
  21. #include QMK_KEYBOARD_H
  22. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  23. [0] = LAYOUT_split_3x6_3(
  24. //,-----------------------------------------------------. ,-----------------------------------------------------.
  25. KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
  26. //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
  27. KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
  28. //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
  29. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
  30. //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------|
  31. KC_LGUI, MO(1), KC_SPC, KC_ENT, MO(2), KC_RALT
  32. //`--------------------------' `--------------------------'
  33. ),
  34. [1] = LAYOUT_split_3x6_3(
  35. //,-----------------------------------------------------. ,-----------------------------------------------------.
  36. KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_DEL,
  37. //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
  38. KC_LCTL,KC__MUTE,KC__VOLDOWN,KC__VOLUP, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP,KC_RIGHT, XXXXXXX, XXXXXXX,
  39. //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
  40. KC_LSFT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
  41. //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------|
  42. KC_LGUI, _______, KC_SPC, KC_ENT, MO(3), KC_RALT
  43. //`--------------------------' `--------------------------'
  44. ),
  45. [2] = LAYOUT_split_3x6_3(
  46. //,-----------------------------------------------------. ,-----------------------------------------------------.
  47. KC_ESC, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL,
  48. //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
  49. KC_LCTL, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, KC_GRV,
  50. //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
  51. KC_LSFT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, KC_TILD,
  52. //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------|
  53. KC_LGUI, MO(3), KC_SPC, KC_ENT, _______, KC_RALT
  54. //`--------------------------' `--------------------------'
  55. ),
  56. [3] = LAYOUT_split_3x6_3(
  57. //,-----------------------------------------------------. ,-----------------------------------------------------.
  58. RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
  59. //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
  60. RGB_TOG, RGB_HUI, RGB_SAI, RGB_VAI, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_F12,
  61. //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
  62. RGB_MOD, RGB_HUD, RGB_SAD, RGB_VAD, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
  63. //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------|
  64. KC_LGUI, _______, KC_SPC, KC_ENT, _______, KC_RALT
  65. //`--------------------------' `--------------------------'
  66. )
  67. };
  68. #ifdef OLED_DRIVER_ENABLE
  69. oled_rotation_t oled_init_user(oled_rotation_t rotation) {
  70. if (!is_master) {
  71. return OLED_ROTATION_180; // flips the display 180 degrees if offhand
  72. }
  73. return rotation;
  74. }
  75. #define L_BASE 0
  76. #define L_LOWER 2
  77. #define L_RAISE 4
  78. #define L_ADJUST 8
  79. void oled_render_layer_state(void) {
  80. oled_write_P(PSTR("Layer: "), false);
  81. switch (layer_state) {
  82. case L_BASE:
  83. oled_write_ln_P(PSTR("Default"), false);
  84. break;
  85. case L_LOWER:
  86. oled_write_ln_P(PSTR("Lower"), false);
  87. break;
  88. case L_RAISE:
  89. oled_write_ln_P(PSTR("Raise"), false);
  90. break;
  91. case L_ADJUST:
  92. case L_ADJUST|L_LOWER:
  93. case L_ADJUST|L_RAISE:
  94. case L_ADJUST|L_LOWER|L_RAISE:
  95. oled_write_ln_P(PSTR("Adjust"), false);
  96. break;
  97. }
  98. }
  99. char keylog_str[24] = {};
  100. const char code_to_name[60] = {
  101. ' ', ' ', ' ', ' ', 'a', 'b', 'c', 'd', 'e', 'f',
  102. 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p',
  103. 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
  104. '1', '2', '3', '4', '5', '6', '7', '8', '9', '0',
  105. 'R', 'E', 'B', 'T', '_', '-', '=', '[', ']', '\\',
  106. '#', ';', '\'', '`', ',', '.', '/', ' ', ' ', ' '};
  107. void set_keylog(uint16_t keycode, keyrecord_t *record) {
  108. char name = ' ';
  109. if ((keycode >= QK_MOD_TAP && keycode <= QK_MOD_TAP_MAX) ||
  110. (keycode >= QK_LAYER_TAP && keycode <= QK_LAYER_TAP_MAX)) { keycode = keycode & 0xFF; }
  111. if (keycode < 60) {
  112. name = code_to_name[keycode];
  113. }
  114. // update keylog
  115. snprintf(keylog_str, sizeof(keylog_str), "%dx%d, k%2d : %c",
  116. record->event.key.row, record->event.key.col,
  117. keycode, name);
  118. }
  119. void oled_render_keylog(void) {
  120. oled_write(keylog_str, false);
  121. }
  122. void render_bootmagic_status(bool status) {
  123. /* Show Ctrl-Gui Swap options */
  124. static const char PROGMEM logo[][2][3] = {
  125. {{0x97, 0x98, 0}, {0xb7, 0xb8, 0}},
  126. {{0x95, 0x96, 0}, {0xb5, 0xb6, 0}},
  127. };
  128. if (status) {
  129. oled_write_ln_P(logo[0][0], false);
  130. oled_write_ln_P(logo[0][1], false);
  131. } else {
  132. oled_write_ln_P(logo[1][0], false);
  133. oled_write_ln_P(logo[1][1], false);
  134. }
  135. }
  136. void oled_render_logo(void) {
  137. static const char PROGMEM crkbd_logo[] = {
  138. 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94,
  139. 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4,
  140. 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4,
  141. 0};
  142. oled_write_P(crkbd_logo, false);
  143. }
  144. void oled_task_user(void) {
  145. if (is_master) {
  146. oled_render_layer_state();
  147. oled_render_keylog();
  148. } else {
  149. oled_render_logo();
  150. }
  151. }
  152. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  153. if (record->event.pressed) {
  154. set_keylog(keycode, record);
  155. }
  156. return true;
  157. }
  158. #endif // OLED_DRIVER_ENABLE