You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
3.8 KiB

  1. /*
  2. Copyright 2016 Julien Pecqueur <julien@peclu.net>
  3. Copyright 2016 Felix Uhl <ifreilicht@gmail.com>
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 2 of the License, or
  7. (at your option) any later version.
  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. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #include "s60-x.h"
  16. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  17. /* Layout 0: Default Layer
  18. * ,-----------------------------------------------------------.
  19. * |` | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |
  20. * |-----------------------------------------------------------|
  21. * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \|
  22. * |-----------------------------------------------------------|
  23. * |Ctrl | A| S| D| F| G| H| J| K| L| ;| '|Return |
  24. * |-----------------------------------------------------------|
  25. * |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift |
  26. * |-----------------------------------------------------------|
  27. * |Fn1 |Gui |Alt | SpaceFn |Alt |Gui |App |Ctrl|
  28. * `-----------------------------------------------------------'
  29. */
  30. KEYMAP(
  31. GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS, EQL, NO, BSPC, \
  32. TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC, RBRC, BSLS, \
  33. LCTL, A, S, D, F, G, H, J, K, L, SCLN, QUOT, NO, ENT, \
  34. LSFT, NO, Z, X, C, V, B, N, M, COMM, DOT, SLSH, NO, RSFT, NO, \
  35. FN1, LGUI, LALT, FN0, RALT, RGUI, APP, RCTL),
  36. /* Layout 1: Function Layer
  37. * ,-----------------------------------------------------------.
  38. * |Esc| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12|Delete |
  39. * |-----------------------------------------------------------|
  40. * | |Prv|Ply|Nxt|Stp| | |PUp|Up |PDn| |Slk|Pau|Ins |
  41. * |-----------------------------------------------------------|
  42. * | |Vl-|Mut|Vl+| | |Hom|Lef|Dow|Rig|End| |PEnt |
  43. * |-----------------------------------------------------------|
  44. * | |Prt|Cut|Cop|Pst|Cal| | | | | |CapsLock |
  45. * |-----------------------------------------------------------|
  46. * | | | | | | | | |
  47. * `-----------------------------------------------------------'
  48. */
  49. KEYMAP(
  50. ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, TRNS, DEL, \
  51. TRNS, MPRV, MPLY, MNXT, MSTP, TRNS, TRNS, PGUP, UP, PGDN, TRNS, SLCK, PAUS, INS, \
  52. TRNS, VOLD, MUTE, VOLU, TRNS, TRNS, HOME, LEFT, DOWN, RGHT, END, TRNS, TRNS, PENT, \
  53. TRNS, TRNS, PSCR, FN2, FN3, FN4, CALC, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, CAPS, TRNS, \
  54. TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS),
  55. };
  56. /*
  57. * Fn action definition
  58. */
  59. const uint16_t PROGMEM fn_actions[] = {
  60. [0] = ACTION_LAYER_TAP_KEY(1, KC_SPACE), /* SpaceFn layout 1 */
  61. [1] = ACTION_LAYER_MOMENTARY(1), /* Momentary layout 1 */
  62. [2] = ACTION_MODS_KEY(MOD_LSFT, KC_DEL), /* Cut */
  63. [3] = ACTION_MODS_KEY(MOD_LCTL, KC_INS), /* Copy */
  64. [4] = ACTION_MODS_KEY(MOD_LSFT, KC_INS), /* Paste */
  65. };
  66. const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
  67. {
  68. return MACRO_NONE;
  69. };
  70. void matrix_init_user(void) {
  71. }
  72. void matrix_scan_user(void) {
  73. }
  74. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  75. return true;
  76. }
  77. void led_set_user(uint8_t usb_led) {
  78. }