logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

crkbd.c (5733B)


  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. #include "quantum.h"
  16. #ifdef SWAP_HANDS_ENABLE
  17. __attribute__((weak)) const keypos_t PROGMEM hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = {
  18. // Left
  19. {{0, 4}, {1, 4}, {2, 4}, {3, 4}, {4, 4}, {5, 4}},
  20. {{0, 5}, {1, 5}, {2, 5}, {3, 5}, {4, 5}, {5, 5}},
  21. {{0, 6}, {1, 6}, {2, 6}, {3, 6}, {4, 6}, {5, 6}},
  22. {{0, 7}, {1, 7}, {2, 7}, {3, 7}, {4, 7}, {5, 7}},
  23. // Right
  24. {{0, 0}, {1, 0}, {2, 0}, {3, 0}, {4, 0}, {5, 0}},
  25. {{0, 1}, {1, 1}, {2, 1}, {3, 1}, {4, 1}, {5, 1}},
  26. {{0, 2}, {1, 2}, {2, 2}, {3, 2}, {4, 2}, {5, 2}},
  27. {{0, 3}, {1, 3}, {2, 3}, {3, 3}, {4, 3}, {5, 3}}
  28. };
  29. #endif
  30. #ifdef OLED_ENABLE
  31. oled_rotation_t oled_init_kb(oled_rotation_t rotation) {
  32. if (!is_keyboard_master()) {
  33. return OLED_ROTATION_180; // flips the display 180 degrees if offhand
  34. }
  35. return rotation;
  36. }
  37. static void oled_render_layer_state(void) {
  38. oled_write_P(PSTR("Layer: "), false);
  39. switch (get_highest_layer(layer_state)) {
  40. case 0:
  41. oled_write_ln_P(PSTR("Default"), false);
  42. break;
  43. case 1:
  44. oled_write_ln_P(PSTR("Lower"), false);
  45. break;
  46. case 2:
  47. oled_write_ln_P(PSTR("Raise"), false);
  48. break;
  49. case 3:
  50. oled_write_ln_P(PSTR("Adjust"), false);
  51. break;
  52. default:
  53. oled_write_ln_P(PSTR("Undef"), false);
  54. break;
  55. }
  56. }
  57. char key_name = ' ';
  58. uint16_t last_keycode;
  59. uint8_t last_row;
  60. uint8_t last_col;
  61. static const char PROGMEM code_to_name[60] = {' ', ' ', ' ', ' ', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', 'R', 'E', 'B', 'T', '_', '-', '=', '[', ']', '\\', '#', ';', '\'', '`', ',', '.', '/', ' ', ' ', ' '};
  62. static void set_keylog(uint16_t keycode, keyrecord_t *record) {
  63. // save the row and column (useful even if we can't find a keycode to show)
  64. last_row = record->event.key.row;
  65. last_col = record->event.key.col;
  66. key_name = ' ';
  67. last_keycode = keycode;
  68. if (IS_QK_MOD_TAP(keycode)) {
  69. if (record->tap.count) {
  70. keycode = QK_MOD_TAP_GET_TAP_KEYCODE(keycode);
  71. } else {
  72. keycode = 0xE0 + biton(QK_MOD_TAP_GET_MODS(keycode) & 0xF) + biton(QK_MOD_TAP_GET_MODS(keycode) & 0x10);
  73. }
  74. } else if (IS_QK_LAYER_TAP(keycode) && record->tap.count) {
  75. keycode = QK_LAYER_TAP_GET_TAP_KEYCODE(keycode);
  76. } else if (IS_QK_MODS(keycode)) {
  77. keycode = QK_MODS_GET_BASIC_KEYCODE(keycode);
  78. } else if (IS_QK_ONE_SHOT_MOD(keycode)) {
  79. keycode = 0xE0 + biton(QK_ONE_SHOT_MOD_GET_MODS(keycode) & 0xF) + biton(QK_ONE_SHOT_MOD_GET_MODS(keycode) & 0x10);
  80. }
  81. if (keycode > ARRAY_SIZE(code_to_name)) {
  82. return;
  83. }
  84. // update keylog
  85. key_name = pgm_read_byte(&code_to_name[keycode]);
  86. }
  87. static const char *depad_str(const char *depad_str, char depad_char) {
  88. while (*depad_str == depad_char)
  89. ++depad_str;
  90. return depad_str;
  91. }
  92. static void oled_render_keylog(void) {
  93. oled_write_char('0' + last_row, false);
  94. oled_write_P(PSTR("x"), false);
  95. oled_write_char('0' + last_col, false);
  96. oled_write_P(PSTR(", k"), false);
  97. const char *last_keycode_str = get_u16_str(last_keycode, ' ');
  98. oled_write(depad_str(last_keycode_str, ' '), false);
  99. oled_write_P(PSTR(":"), false);
  100. oled_write_char(key_name, false);
  101. oled_advance_page(true);
  102. }
  103. // static void render_bootmagic_status(bool status) {
  104. // /* Show Ctrl-Gui Swap options */
  105. // static const char PROGMEM logo[][2][3] = {
  106. // {{0x97, 0x98, 0}, {0xb7, 0xb8, 0}},
  107. // {{0x95, 0x96, 0}, {0xb5, 0xb6, 0}},
  108. // };
  109. // if (status) {
  110. // oled_write_ln_P(logo[0][0], false);
  111. // oled_write_ln_P(logo[0][1], false);
  112. // } else {
  113. // oled_write_ln_P(logo[1][0], false);
  114. // oled_write_ln_P(logo[1][1], false);
  115. // }
  116. // }
  117. __attribute__((weak)) void oled_render_logo(void) {
  118. // clang-format off
  119. static const char PROGMEM crkbd_logo[] = {
  120. 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94,
  121. 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4,
  122. 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4,
  123. 0};
  124. // clang-format on
  125. oled_write_P(crkbd_logo, false);
  126. }
  127. bool oled_task_kb(void) {
  128. if (!oled_task_user()) {
  129. return false;
  130. }
  131. if (is_keyboard_master()) {
  132. oled_render_layer_state();
  133. oled_render_keylog();
  134. } else {
  135. oled_render_logo();
  136. }
  137. return false;
  138. }
  139. bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
  140. if (record->event.pressed) {
  141. set_keylog(keycode, record);
  142. }
  143. return process_record_user(keycode, record);
  144. }
  145. #endif // OLED_ENABLE