logo

qmk_firmware

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

keymap.c (6236B)


  1. /* Copyright 2021 illness072
  2. *
  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. *
  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. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include QMK_KEYBOARD_H
  17. #define KC_VU KC_AUDIO_VOL_UP
  18. #define KC_VD KC_AUDIO_VOL_DOWN
  19. #define KC_MU KC_AUDIO_MUTE
  20. #define KC_LWSP LT(_LOWER, KC_SPC)
  21. #define KC_RSSP LT(_RAISE, KC_SPC)
  22. enum layer_names {
  23. _QWERTY,
  24. _LOWER,
  25. _RAISE,
  26. NUMBER_OF_LAYERS
  27. };
  28. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  29. [_QWERTY] = LAYOUT(
  30. //,-------+-------+-------+-------+-------+-------. ,-------+-------+-------+-------+-------+-------.
  31. KC_TAB , KC_Q , KC_W , KC_E , KC_R , KC_T , KC_Y , KC_U , KC_I , KC_O , KC_P ,KC_BSLS,
  32. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  33. KC_LCTL, KC_A , KC_S , KC_D , KC_F , KC_G , KC_H , KC_J , KC_K , KC_L ,KC_SCLN,KC_QUOT,
  34. //`-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------'
  35. KC_Z , KC_X , KC_C , KC_V , KC_B , KC_N , KC_M ,KC_COMM,KC_DOT ,KC_SLSH,
  36. // `-------+-------+-------+-------+-------+-------+-------. ,-------+-------+-------+-------+-------+-------+-------'
  37. KC_LALT,KC_LCMD,KC_LWSP,KC_LSFT, KC_DEL ,KC_RSSP,KC_ENT ,KC_BSPC
  38. // `-------+-------+-------+-------' `-------+-------+-------+-------'
  39. ),
  40. [_LOWER] = LAYOUT(
  41. //,-------+-------+-------+-------+-------+-------. ,-------+-------+-------+-------+-------+-------.
  42. KC_ESC , KC_1 , KC_2 , KC_3 , KC_4 , KC_5 , KC_6 , KC_7 , KC_8 , KC_9 , KC_0 ,KC_TILD,
  43. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  44. KC_LCTL,KC_EXLM,KC_AT ,KC_HASH,KC_DLR ,KC_PERC, KC_CIRC,KC_AMPR,KC_ASTR,KC_MINS,KC_PLUS,KC_GRV,
  45. //`-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  46. XXXXXXX,XXXXXXX,KC_LCBR,KC_LBRC,KC_LPRN, KC_RPRN,KC_RBRC,KC_RCBR,KC_UNDS,KC_EQL ,
  47. // `-------+-------+-------+-------+-------+-------+-------. ,-------+-------+-------+-------+-------+-------+-------'
  48. KC_LALT,KC_LCMD,KC_LWSP,KC_LSFT, KC_DEL ,KC_RSSP,KC_ENT ,KC_BSPC
  49. // `-------+-------+-------+-------' `-------+-------+-------+-------'
  50. ),
  51. [_RAISE] = LAYOUT(
  52. //,-------+-------+-------+-------+-------+-------. ,-------+-------+-------+-------+-------+-------.
  53. KC_ESC , KC_F1 , KC_F2 , KC_F3 , KC_F4 , KC_F5 , KC_F6 , KC_F7 , KC_F8 , KC_F9 ,KC_F10 ,KC_F11 ,
  54. //|-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------|
  55. KC_LCTL, KC_VD , KC_VU , KC_MU ,UG_HUEU,UG_VALU, KC_LEFT,KC_DOWN, KC_UP ,KC_RGHT,XXXXXXX,KC_F12 ,
  56. //`-------+-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------+-------'
  57. KC_BRMD,KC_BRMU,UG_TOGG,UG_NEXT,UG_VALD, KC_HOME,KC_PGDN,KC_PGUP,KC_END ,XXXXXXX,
  58. // `-------+-------+-------+-------+-------+-------+-------. ,-------+-------+-------+-------+-------+-------+-------'
  59. KC_LALT,KC_LCMD,KC_LWSP,KC_LSFT, KC_DEL ,KC_RSSP,KC_ENT ,KC_BSPC
  60. // `-------+-------+-------+-------' `-------+-------+-------+-------'
  61. )
  62. };
  63. #ifdef OLED_ENABLE
  64. # define STEPS 32
  65. uint8_t keypresses = 0;
  66. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  67. if (record->event.pressed) {
  68. keypresses = (keypresses + 1) % STEPS;
  69. }
  70. return true;
  71. }
  72. bool oled_task_user(void) {
  73. if (is_keyboard_master()) {
  74. static char layer_names[NUMBER_OF_LAYERS][10] = {"Default", "Lower", "Raise"};
  75. static char l1[] = " \x94\x95\x96\x97";
  76. static char l2[] = " \xB4\xB5\xB6\xB7";
  77. static char r1[] = " \x98\x99\x9A\x9B";
  78. static char r2[] = " \xB8\xB9\xBA\xBB";
  79. int iconShift = keypresses % STEPS;
  80. if (iconShift > STEPS / 2) {
  81. iconShift = STEPS - iconShift;
  82. }
  83. bool goingLeft = keypresses < STEPS / 2;
  84. oled_write_P(PSTR("Layer: "), false);
  85. oled_write_ln(layer_names[get_highest_layer(layer_state)], false);
  86. oled_advance_page(true);
  87. oled_write_ln((goingLeft ? l1 : r1) + iconShift, false);
  88. oled_write_ln((goingLeft ? l2 : r2) + iconShift, false);
  89. } else {
  90. oled_advance_page(true);
  91. static const char PROGMEM logo[] = {
  92. 0x8f,0x90,0x91,0x92,0x93,0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8a,0x8b,0x8c,0x8d,0x8e,0x0a,
  93. 0xaf,0xb0,0xb1,0xb2,0xb3,0xa0,0xa1,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xab,0xac,0xad,0xae,0x0a,
  94. 0xcf,0xd0,0xd1,0xd2,0xd3,0xc0,0xc1,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xcb,0xcc,0xcd,0xce,0
  95. };
  96. oled_write_ln_P(logo, false);
  97. }
  98. return false;
  99. }
  100. #endif