8ceb86bc |
1 | /* |
2 | Copyright 2016 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 | */ |
03afc071 |
17 | #include "unimap_trans.h" |
8ceb86bc |
18 | |
19 | |
03afc071 |
20 | #define AC_L1 ACTION_LAYER_MOMENTARY(1) |
21 | |
8ceb86bc |
22 | |
23 | #ifdef KEYMAP_SECTION_ENABLE |
24 | const action_t actionmaps[][UNIMAP_ROWS][UNIMAP_COLS] __attribute__ ((section (".keymap.keymaps"))) = { |
25 | #else |
26 | const action_t actionmaps[][UNIMAP_ROWS][UNIMAP_COLS] PROGMEM = { |
27 | #endif |
03afc071 |
28 | [0] = UNIMAP_JP( |
29 | ESC, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS,EQL, JYEN,BSPC, |
30 | TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC,RBRC, |
31 | LCTL,A, S, D, F, G, H, J, K, L, SCLN,QUOT,NUHS, ENT, |
32 | LSFT, Z, X, C, V, B, N, M, COMM,DOT, SLSH,RO, UP, RSFT, |
33 | L1, ZKHK,LGUI,LALT,MHEN, SPC, HENK,KANA,RALT,L1, LEFT,DOWN,RGHT |
8ceb86bc |
34 | ), |
03afc071 |
35 | |
36 | [1] = UNIMAP_JP( |
37 | PWR, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, INS, DEL, |
38 | CAPS,TRNS,TRNS,TRNS,TRNS,TRNS,TRNS,TRNS,PSCR,SLCK,PAUS,UP, TRNS, |
39 | TRNS,VOLD,VOLU,MUTE,TRNS,TRNS,PAST,PSLS,HOME,PGUP,LEFT,RGHT,TRNS, PENT, |
40 | TRNS, TRNS,TRNS,TRNS,TRNS,TRNS,PPLS,PMNS,END, PGDN,DOWN,TRNS,PGUP,TRNS, |
41 | TRNS,TRNS,TRNS,TRNS,TRNS, TRNS, TRNS,TRNS,TRNS,TRNS,HOME,PGDN,END |
8ceb86bc |
42 | ), |
43 | }; |