keymap.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* Copyright 2021 Jose Luis Adelantado Torres
  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. #ifdef OLED_ENABLE
  18. # include "oled_display.h"
  19. #endif
  20. enum layer_names { _MA, _FN };
  21. enum custom_keycodes {
  22. KC_CUST = SAFE_RANGE,
  23. };
  24. // clang-format off
  25. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  26. [_MA] = LAYOUT_ansi(
  27. KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_HOME,
  28. KC_F13, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL,
  29. KC_F14, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGUP,
  30. KC_F15, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN,
  31. KC_F16, KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, MO(_FN), KC_RALT, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
  32. ),
  33. [_FN] = LAYOUT_ansi(
  34. RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, KC_END,
  35. RGB_TOG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  36. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  37. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  38. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  39. ),
  40. };
  41. // clang-format on
  42. #ifdef OLED_ENABLE
  43. oled_rotation_t oled_init_user(oled_rotation_t rotation) {
  44. oled_timer = timer_read32();
  45. set_oled_mode(OLED_MODE_IDLE);
  46. return OLED_ROTATION_180;
  47. }
  48. void oled_task_user(void) {
  49. if (timer_elapsed(oled_timer) >= 3000) {
  50. set_oled_mode(OLED_MODE_IDLE);
  51. }
  52. render_frame();
  53. }
  54. #endif
  55. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  56. // Send keystrokes to host keyboard, if connected (see readme)
  57. process_record_remote_kb(keycode, record);
  58. switch (keycode) {
  59. case RGB_TOG:
  60. if (record->event.pressed) {
  61. #ifdef OLED_ENABLE
  62. process_record_keymap_oled(keycode);
  63. #endif
  64. }
  65. break;
  66. case KC_CUST: // custom macro
  67. if (record->event.pressed) {
  68. }
  69. break;
  70. }
  71. return true;
  72. }
  73. bool encoder_update_user(uint8_t index, bool clockwise) {
  74. if (clockwise) {
  75. tap_code(KC_VOLU);
  76. #ifdef OLED_ENABLE
  77. process_record_encoder_oled(KC_VOLU);
  78. #endif
  79. } else {
  80. tap_code(KC_VOLD);
  81. #ifdef OLED_ENABLE
  82. process_record_encoder_oled(KC_VOLD);
  83. #endif
  84. }
  85. return true;
  86. }
  87. void matrix_init_user(void) {
  88. // Initialize remote keyboard, if connected (see readme)
  89. matrix_init_remote_kb();
  90. }
  91. void matrix_scan_user(void) {
  92. // Scan and parse keystrokes from remote keyboard, if connected (see readme)
  93. matrix_scan_remote_kb();
  94. }