logo

qmk_firmware

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

keymap.c (2501B)


  1. /* Copyright 2019 merlin04
  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. // Defines names for use in layer keycodes and the keymap
  18. enum layer_names {
  19. _BASE,
  20. _FN
  21. };
  22. // Defines the keycodes used by our macros in process_record_user
  23. /*enum custom_keycodes {
  24. };*/
  25. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  26. /* Base */
  27. [_BASE] = LAYOUT(
  28. KC_PGUP, KC_UP, KC_PGDN,
  29. KC_LEFT, KC_DOWN, KC_RIGHT,
  30. MO(_FN), KC_MUTE, BL_TOGG
  31. ),
  32. [_FN] = LAYOUT(
  33. KC_HOME, KC_CALC, KC_END,
  34. BL_STEP, KC_ESC, KC_SLEP,
  35. KC_TRNS, KC_MPLY, QK_BOOT
  36. )
  37. };
  38. bool encoder_update_user(uint8_t index, bool clockwise) {
  39. switch (get_highest_layer(layer_state)) {
  40. case _BASE:
  41. if (clockwise) {
  42. tap_code(KC_VOLU);
  43. } else {
  44. tap_code(KC_VOLD);
  45. }
  46. break;
  47. case _FN:
  48. if (clockwise) {
  49. tap_code(KC_MNXT);
  50. } else {
  51. tap_code(KC_MPRV);
  52. }
  53. }
  54. return true;
  55. }
  56. #ifdef OLED_ENABLE
  57. bool oled_task_user(void) {
  58. // Host Keyboard Layer Status
  59. oled_write_P(PSTR("Layer: "), false);
  60. switch (get_highest_layer(layer_state)) {
  61. case _BASE:
  62. oled_write_P(PSTR("Default\n"), false);
  63. break;
  64. case _FN:
  65. oled_write_P(PSTR("FN\n"), false);
  66. break;
  67. default:
  68. // Or use the write_ln shortcut over adding '\n' to the end of your string
  69. oled_write_ln_P(PSTR("Undefined"), false);
  70. }
  71. // Host Keyboard LED Status
  72. led_t led_state = host_keyboard_led_state();
  73. oled_write_P(led_state.num_lock ? PSTR("NUMLCK ") : PSTR(" "), false);
  74. oled_write_P(led_state.caps_lock ? PSTR("CAPLCK ") : PSTR(" "), false);
  75. oled_write_P(led_state.scroll_lock ? PSTR("SCRLCK ") : PSTR(" "), false);
  76. return false;
  77. }
  78. #endif