diff options
Diffstat (limited to 'converter/ps2_usb/keymap_plain.c')
| -rw-r--r-- | converter/ps2_usb/keymap_plain.c | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/converter/ps2_usb/keymap_plain.c b/converter/ps2_usb/keymap_plain.c new file mode 100644 index 000000000..9c6e7d9ff --- /dev/null +++ b/converter/ps2_usb/keymap_plain.c | |||
| @@ -0,0 +1,50 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2011,2012,2013 Jun Wako <wakojun@gmail.com> | ||
| 3 | |||
| 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 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | #include "keymap_common.h" | ||
| 18 | |||
| 19 | |||
| 20 | const uint8_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 21 | /* 0: default | ||
| 22 | * ,---. ,---------------. ,---------------. ,---------------. ,-----------. ,-----------. | ||
| 23 | * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Pau| |Pwr|Slp|Wak| | ||
| 24 | * `---' `---------------' `---------------' `---------------' `-----------' `-----------' | ||
| 25 | * ,-----------------------------------------------------------. ,-----------. ,---------------. | ||
| 26 | * | `| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backspa| |Ins|Hom|PgU| |NmL| /| *| -| | ||
| 27 | * |-----------------------------------------------------------| |-----------| |---------------| | ||
| 28 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \| |Del|End|PgD| | 7| 8| 9| | | ||
| 29 | * |-----------------------------------------------------------| `-----------' |-----------| +| | ||
| 30 | * |CapsLo| A| S| D| F| G| H| J| K| L| ;| '|Return | | 4| 5| 6| | | ||
| 31 | * |-----------------------------------------------------------| ,---. |---------------| | ||
| 32 | * |Shift | Z| X| C| V| B| N| M| ,| ,| /|Shift | |Up | | 1| 2| 3| | | ||
| 33 | * |-----------------------------------------------------------| ,-----------. |-----------|Ent| | ||
| 34 | * |Ctrl |Gui |Alt | Space |Alt |Gui |Menu|Ctrl| |Lef|Dow|Rig| | 0| .| | | ||
| 35 | * `-----------------------------------------------------------' `-----------' `---------------' | ||
| 36 | * ; = Fn0(to Layer 5) | ||
| 37 | * / = Fn1(to Layer 6) | ||
| 38 | */ | ||
| 39 | KEYMAP( | ||
| 40 | ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, PSCR,SLCK,BRK, | ||
| 41 | GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS,EQL, BSPC, INS, HOME,PGUP, NLCK,PSLS,PAST,PMNS, | ||
| 42 | TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC,RBRC,BSLS, DEL, END, PGDN, P7, P8, P9, | ||
| 43 | CAPS,A, S, D, F, G, H, J, K, L, SCLN,QUOT, ENT, P4, P5, P6, PPLS, | ||
| 44 | LSFT,Z, X, C, V, B, N, M, COMM,DOT, SLSH, RSFT, UP, P1, P2, P3, | ||
| 45 | LCTL,LGUI,LALT, SPC, RALT,RGUI,APP, RCTL, LEFT,DOWN,RGHT, P0, PDOT,PENT | ||
| 46 | ), | ||
| 47 | }; | ||
| 48 | |||
| 49 | const uint16_t PROGMEM fn_actions[] = { | ||
| 50 | }; | ||
