keymap.c 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* Copyright 2018 Andrew Heaston @rooski15
  2. *
  3. * Developed by /u/holtenc at www.primekb.com
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. // Prime_R Rev 1.0
  19. #include QMK_KEYBOARD_H
  20. // Fillers to make layering more clear
  21. #define _______ KC_TRNS
  22. #define XXXXXXX KC_NO
  23. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  24. /* (Base Layer) Default Layer
  25. * ,---------------------------------------------------------------.
  26. * |Esc| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0|PUP|BSP|PSC|PUP|PDN|
  27. * |---------------------------------------------------------------|
  28. * |Grv| Q| W| E| R| T| Y| U| I| O| P|PDN|DEL| 7| 8| 9|
  29. * |---------------------------------------------------------------|
  30. * |Tab | A| S| D| F| G| H| J| K| L| '|Return| 4| 5| 6|
  31. * |---------------------------------------------------------------|
  32. * |Shift| Z| X| C| V| B| N| M| ,| .| ?|Shift| 1| 2| 3|
  33. * |---------------------------------------------------------------|
  34. * |Ctrl|Gui |App|Alt| Space| Space |Alt|App|GUI|Ctrl | 0| .|Ret|
  35. * `---------------------------------------------------------------'
  36. */
  37. // 0: Base Layer
  38. [0] = LAYOUT(
  39. KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_PGUP, KC_BSPC, KC_PSCR, KC_PGUP, KC_PGDN, \
  40. KC_GRV, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_PGDN, KC_DEL, KC_7, KC_8, KC_9, \
  41. KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_DQUO, KC_ENT, KC_4, KC_5, KC_6, \
  42. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_LABK, KC_RABK, KC_QUES, KC_LSFT, KC_1, KC_2, KC_3, \
  43. KC_LCTL, KC_LGUI, KC_APP, KC_LALT, MO(0), KC_SPC, KC_RALT, KC_APP, KC_RGUI, KC_RCTL, KC_0, KC_DOT, KC_ENT \
  44. ),
  45. // 1: Function Layer
  46. [1] = LAYOUT(
  47. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
  48. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
  49. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
  50. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
  51. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
  52. ),
  53. };
  54. const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
  55. switch (id) {
  56. }
  57. return MACRO_NONE;
  58. }
  59. void matrix_init_user(void) {
  60. }
  61. void matrix_scan_user(void) {
  62. }
  63. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  64. return true;
  65. }