logo

qmk_firmware

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

keymap.c (9788B)


  1. /*
  2. Copyright 2021 0xCB - Conor Burns
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #include QMK_KEYBOARD_H
  15. // clang-format off
  16. enum layer_names {
  17. _HOME,
  18. _MISC,
  19. _RGB,
  20. _BLED
  21. };
  22. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  23. [_HOME] = LAYOUT(
  24. KC_MPRV, KC_MNXT, KC_MPLY,
  25. KC_PGUP, KC_PGDN, TO(3),
  26. KC_HOME, KC_END, TO(1)
  27. ),
  28. [_MISC] = LAYOUT(
  29. _______, _______, _______,
  30. _______, _______, TO(0),
  31. _______, _______, TO(2)
  32. ),
  33. [_RGB] = LAYOUT(
  34. UG_HUEU, UG_HUED, UG_NEXT,
  35. UG_SATU, UG_SATD, TO(1),
  36. UG_SPDU, UG_SPDD, TO(3)
  37. ),
  38. [_BLED] = LAYOUT(
  39. BL_STEP, BL_BRTG, BL_TOGG,
  40. BL_ON, BL_OFF, TO(2),
  41. BL_UP, BL_DOWN, TO(0)
  42. )
  43. };
  44. // clang-format on
  45. /* rotary encoder (SW3) - add more else if blocks for more granular layer control */
  46. #ifdef ENCODER_ENABLE
  47. bool encoder_update_user(uint8_t index, bool clockwise) {
  48. if (IS_LAYER_ON(_RGB)) {
  49. # ifdef RGBLIGHT_ENABLE
  50. if (clockwise) {
  51. rgblight_increase_val();
  52. } else {
  53. rgblight_decrease_val();
  54. }
  55. # endif
  56. } else if (IS_LAYER_ON(_BLED)) {
  57. if (clockwise) {
  58. backlight_increase();
  59. } else {
  60. backlight_decrease();
  61. }
  62. } else {
  63. if (clockwise) {
  64. tap_code(KC_VOLU);
  65. } else {
  66. tap_code(KC_VOLD);
  67. }
  68. }
  69. return true;
  70. }
  71. #endif
  72. /* oled stuff :) */
  73. #ifdef OLED_ENABLE
  74. uint16_t startup_timer;
  75. oled_rotation_t oled_init_user(oled_rotation_t rotation) {
  76. startup_timer = timer_read();
  77. return rotation;
  78. }
  79. static void render_logo(void) {
  80. static const char PROGMEM raw_logo[] = {
  81. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 64, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 64, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  82. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 2, 4, 2, 1, 1, 1, 1, 1, 1, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 1, 1, 1, 1, 1, 1, 2, 4, 2, 1, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 248, 5, 2, 0, 0, 0, 0, 0, 0, 128, 192, 192, 224, 224, 112, 120, 56, 63, 28, 14, 14, 14, 254, 14, 14, 30, 28, 63, 56, 120, 112, 224, 224, 192, 128, 0, 0, 0, 0, 0, 0, 0, 2, 5, 248, 5, 2, 0,
  83. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 160, 19, 162, 66, 66, 66, 66, 66, 66, 66, 255, 255, 255, 0, 0, 0, 252, 254, 254, 192, 192, 192, 192, 255, 0, 0, 0, 62, 62, 60, 60, 0, 0, 1, 255, 255, 255, 66, 66, 66, 66, 66, 66, 66, 162, 19, 160, 64, 0, 0, 0, 0, 128, 64, 64, 64, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 192, 64, 64, 192, 128, 0, 0, 192, 64, 64, 192, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 64, 192, 0, 0, 0, 0, 0, 128, 192, 64, 64, 192, 128, 0, 0, 128, 192, 64, 64, 192, 128, 0, 0, 64, 64, 64, 64, 64, 192, 0, 0, 0, 0, 0, 249, 8, 8, 8, 8, 8, 8, 8, 8, 127, 255, 255, 192, 128, 128, 15, 31, 31, 1, 1, 1, 1, 255, 0, 0, 0, 30, 30, 14, 14, 128, 192, 192, 255, 255, 127, 8, 8, 8, 8, 8, 8, 8, 8, 249, 0, 0, 0,
  84. 0, 0, 31, 49, 64, 78, 64, 49, 31, 0, 0, 97, 22, 8, 22, 97, 0, 0, 31, 49, 96, 64, 64, 96, 32, 0, 0, 127, 68, 68, 100, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 127, 64, 64, 0, 0, 0, 32, 100, 68, 68, 110, 59, 0, 0, 32, 100, 68, 68, 110, 59, 0, 0, 0, 0, 0, 126, 3, 1, 0, 0, 0, 8, 20, 35, 20, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 7, 7, 15, 254, 30, 28, 28, 28, 255, 28, 28, 28, 30, 254, 15, 7, 3, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 17, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 40, 68, 40, 16, 16, 16, 16, 16, 16, 31, 0, 0, 16, 40, 71, 40, 16, 0, 0, 31, 16, 16, 16, 16, 16, 16, 40, 68, 40, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  85. };
  86. oled_write_raw_P(raw_logo, sizeof(raw_logo));
  87. }
  88. static void render_logo_font(void) {
  89. static const char PROGMEM qmk_logo[] = {0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xA0, 0xA1, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0x88, 0x89, 0x8A, 0x8B, 0x8A, 0x8B, 0x8C, 0x8D, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF, 0xD0, 0xA8, 0xA9, 0xAA, 0xAB, 0xAA, 0xAB, 0xAC, 0xAD, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xCB, 0xEC, 0xED, 0xEE, 0xEF, 0xF0, 0x00};
  90. oled_write_P(qmk_logo, false);
  91. }
  92. /* Shows the name of the current layer and locks for the host (CAPS etc.) */
  93. static void render_info(void) {
  94. oled_write_P(PSTR("Layer: "), false);
  95. switch (get_highest_layer(layer_state)) {
  96. case _HOME:
  97. oled_write_ln_P(PSTR("HOME"), false);
  98. break;
  99. case _MISC:
  100. oled_write_ln_P(PSTR("MISC"), false);
  101. break;
  102. case _RGB:
  103. oled_write_ln_P(PSTR("RGB"), false);
  104. break;
  105. case _BLED:
  106. oled_write_ln_P(PSTR("Backlight"), false);
  107. break;
  108. default:
  109. oled_write_ln_P(PSTR("Undefined"), false);
  110. }
  111. led_t led_state = host_keyboard_led_state();
  112. oled_write_P(led_state.num_lock ? PSTR("NUM ") : PSTR(" "), false);
  113. oled_write_P(led_state.caps_lock ? PSTR("CAP ") : PSTR(" "), false);
  114. oled_write_ln_P(led_state.scroll_lock ? PSTR("SCR ") : PSTR(" "), false);
  115. }
  116. static void render_rgbled_status(void) {
  117. char string[4];
  118. if (RGBLIGHT_MODES > 1 && rgblight_is_enabled() && get_highest_layer(layer_state) == _RGB) {
  119. uint16_t m = rgblight_get_mode();
  120. string[3] = '\0';
  121. string[2] = '0' + m % 10;
  122. string[1] = (m /= 10) % 10 ? '0' + (m) % 10 : (m / 10) % 10 ? '0' : ' ';
  123. string[0] = m / 10 ? '0' + m / 10 : ' ';
  124. oled_write_P(PSTR("Conf:"), false);
  125. oled_write(string, false);
  126. uint16_t h = rgblight_get_hue() / RGBLIGHT_HUE_STEP;
  127. string[3] = '\0';
  128. string[2] = '0' + h % 10;
  129. string[1] = (h /= 10) % 10 ? '0' + (h) % 10 : (h / 10) % 10 ? '0' : ' ';
  130. string[0] = h / 10 ? '0' + h / 10 : ' ';
  131. oled_write_P(PSTR(","), false);
  132. oled_write(string, false);
  133. uint16_t s = rgblight_get_sat() / RGBLIGHT_SAT_STEP;
  134. string[3] = '\0';
  135. string[2] = '0' + s % 10;
  136. string[1] = (s /= 10) % 10 ? '0' + (s) % 10 : (s / 10) % 10 ? '0' : ' ';
  137. string[0] = s / 10 ? '0' + s / 10 : ' ';
  138. oled_write_P(PSTR(","), false);
  139. oled_write(string, false);
  140. uint16_t v = rgblight_get_val() / RGBLIGHT_VAL_STEP;
  141. string[3] = '\0';
  142. string[2] = '0' + v % 10;
  143. string[1] = (v /= 10) % 10 ? '0' + (v) % 10 : (v / 10) % 10 ? '0' : ' ';
  144. string[0] = v / 10 ? '0' + v / 10 : ' ';
  145. oled_write_P(PSTR(","), false);
  146. oled_write(string, false);
  147. oled_write_ln_P(PSTR("\n MOD HUE SAT VAR"), false);
  148. } else {
  149. oled_write_ln_P(PSTR("\n"), false);
  150. }
  151. }
  152. bool oled_task_user(void) {
  153. static bool finished_timer = false;
  154. if (!finished_timer && (timer_elapsed(startup_timer) < 1000)) {
  155. render_logo();
  156. } else {
  157. if (!finished_timer) {
  158. oled_clear();
  159. finished_timer = true;
  160. }
  161. render_info();
  162. render_rgbled_status();
  163. render_logo_font();
  164. }
  165. return false;
  166. }
  167. #endif