diff options
| author | gtips <51393966+gtips@users.noreply.github.com> | 2019-10-06 08:10:27 +0900 |
|---|---|---|
| committer | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2019-10-05 16:10:27 -0700 |
| commit | 8cf1491d04f96f3ab4bedac408c434e8e50adf7d (patch) | |
| tree | 9169ee4f421774f9e93a1fe2d7f7c01fcee20cf0 /keyboards/reviung34/keymaps | |
| parent | c23581d985430c2571af958c4aca43499737fb72 (diff) | |
| download | qmk_firmware-8cf1491d04f96f3ab4bedac408c434e8e50adf7d.tar.gz qmk_firmware-8cf1491d04f96f3ab4bedac408c434e8e50adf7d.zip | |
[Keyboard] Add keyboard Reviung34 (#6847)
Diffstat (limited to 'keyboards/reviung34/keymaps')
| -rwxr-xr-x | keyboards/reviung34/keymaps/default/config.h | 20 | ||||
| -rwxr-xr-x | keyboards/reviung34/keymaps/default/keymap.c | 67 | ||||
| -rwxr-xr-x | keyboards/reviung34/keymaps/default/readme.md | 1 |
3 files changed, 88 insertions, 0 deletions
diff --git a/keyboards/reviung34/keymaps/default/config.h b/keyboards/reviung34/keymaps/default/config.h new file mode 100755 index 000000000..1924c64a1 --- /dev/null +++ b/keyboards/reviung34/keymaps/default/config.h | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | /* Copyright 2019 gtips | ||
| 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 | |||
| 17 | #pragma once | ||
| 18 | |||
| 19 | // place overrides here | ||
| 20 | |||
diff --git a/keyboards/reviung34/keymaps/default/keymap.c b/keyboards/reviung34/keymaps/default/keymap.c new file mode 100755 index 000000000..4d497a76b --- /dev/null +++ b/keyboards/reviung34/keymaps/default/keymap.c | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | /* Copyright 2019 gtips | ||
| 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 | |||
| 18 | enum layer_names { | ||
| 19 | _BASE, | ||
| 20 | _LOWER, | ||
| 21 | _RAISE, | ||
| 22 | _ADJUST | ||
| 23 | }; | ||
| 24 | |||
| 25 | #define LOWER MO(_LOWER) | ||
| 26 | #define RAISE MO(_RAISE) | ||
| 27 | |||
| 28 | #define CT_TB LCTL_T(KC_TAB) | ||
| 29 | #define CT_Q LCTL_T(KC_Q) | ||
| 30 | #define SF_Z LSFT_T(KC_Z) | ||
| 31 | #define SF_SS RSFT_T(KC_SLSH) | ||
| 32 | #define AL_X LALT_T(KC_X) | ||
| 33 | |||
| 34 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 35 | [_BASE] = LAYOUT_reviung34( | ||
| 36 | CT_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, | ||
| 37 | KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, | ||
| 38 | SF_Z, AL_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, SF_SS, | ||
| 39 | CT_TB, LOWER, RAISE, KC_SPC | ||
| 40 | ), | ||
| 41 | |||
| 42 | [_LOWER] = LAYOUT_reviung34( | ||
| 43 | KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, | ||
| 44 | KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_QUOT, | ||
| 45 | KC_LSFT, KC_ESC, KC_LGUI, KC_LALT, KC_CAPS, KC_HOME, KC_END, KC_PGUP, KC_PGDN, KC_DEL, | ||
| 46 | _______, _______, _______, KC_BSPC | ||
| 47 | ), | ||
| 48 | |||
| 49 | [_RAISE] = LAYOUT_reviung34( | ||
| 50 | KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, | ||
| 51 | KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, XXXXXXX, XXXXXXX, KC_GRV, KC_TILD, KC_DQUO, | ||
| 52 | KC_LSFT, KC_ESC, KC_RGUI, KC_LALT, KC_CAPS, KC_TAB, KC_RALT, KC_RCTL, KC_RSFT, KC_BSPC, | ||
| 53 | _______, _______, _______, KC_ENT | ||
| 54 | ), | ||
| 55 | |||
| 56 | [_ADJUST] = LAYOUT_reviung34( | ||
| 57 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 58 | KC_F7, KC_F7, KC_F8, KC_F9, KC_F10, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 59 | KC_F11, KC_F12, XXXXXXX, XXXXXXX, KC_PSCR, RESET, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 60 | _______, _______, _______, XXXXXXX | ||
| 61 | ), | ||
| 62 | }; | ||
| 63 | |||
| 64 | uint32_t layer_state_set_user(uint32_t state) { | ||
| 65 | return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST); | ||
| 66 | } | ||
| 67 | |||
diff --git a/keyboards/reviung34/keymaps/default/readme.md b/keyboards/reviung34/keymaps/default/readme.md new file mode 100755 index 000000000..2e4619fae --- /dev/null +++ b/keyboards/reviung34/keymaps/default/readme.md | |||
| @@ -0,0 +1 @@ | |||
| # The default keymap for reviung34 | |||
