diff options
| author | Nick Abe <57225836+2Moons-JP@users.noreply.github.com> | 2020-10-03 01:27:16 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-02 17:27:16 +0100 |
| commit | 9395a8700c47fcf6c3a8cc9ba201d66cc45f1cbe (patch) | |
| tree | 155f6c407b46ba749f82b409e30e9cbd66154c51 /keyboards/basekeys | |
| parent | 4bbef61d60c9ee3f85569ddcc6366e362b687a54 (diff) | |
| download | qmk_firmware-9395a8700c47fcf6c3a8cc9ba201d66cc45f1cbe.tar.gz qmk_firmware-9395a8700c47fcf6c3a8cc9ba201d66cc45f1cbe.zip | |
Add Slice RGB VIA Support (#10407)
Co-authored-by: Erovia <Erovia@users.noreply.github.com>
Diffstat (limited to 'keyboards/basekeys')
| -rw-r--r-- | keyboards/basekeys/slice/rev1_rgb/keymaps/via/keymap.c | 127 | ||||
| -rw-r--r-- | keyboards/basekeys/slice/rev1_rgb/keymaps/via/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/basekeys/slice/rev1_rgb/rev1_rgb.h | 20 |
3 files changed, 147 insertions, 1 deletions
diff --git a/keyboards/basekeys/slice/rev1_rgb/keymaps/via/keymap.c b/keyboards/basekeys/slice/rev1_rgb/keymaps/via/keymap.c new file mode 100644 index 000000000..5670f275e --- /dev/null +++ b/keyboards/basekeys/slice/rev1_rgb/keymaps/via/keymap.c | |||
| @@ -0,0 +1,127 @@ | |||
| 1 | /* Copyright 2020 2Moons | ||
| 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 | #include "split_util.h" | ||
| 18 | // Each layer gets a name for readability, which is then used in the keymap matrix below. | ||
| 19 | // The underscores don't mean anything - you can have a layer called STUFF or any other name. | ||
| 20 | // Layer names don't all need to be of the same length, obviously, and you can also skip them | ||
| 21 | // entirely and just use numbers. | ||
| 22 | enum layer_number { | ||
| 23 | _QWERTY, | ||
| 24 | _FN, | ||
| 25 | _LOWER, | ||
| 26 | _RAISE, | ||
| 27 | }; | ||
| 28 | |||
| 29 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 30 | [_QWERTY] = LAYOUT_all( | ||
| 31 | //,------------------------------------------------------------------------| |---------------------------------------------------------------------------. | ||
| 32 | KC_ESC, KC_GRAVE, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPACE, | ||
| 33 | //|------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 34 | RGB_MODE_FORWARD, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, | ||
| 35 | //|------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 36 | RGB_MODE_GRADIENT, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 37 | //|------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 38 | RGB_MODE_XMAS, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_RSFT, | ||
| 39 | //|------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 40 | RGB_TOG, KC_LCTL, KC_LALT, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RCTL, MO(_FN) | ||
| 41 | //`------------------------------------------------------------------------| |---------------------------------------------------------------------------' | ||
| 42 | ), | ||
| 43 | |||
| 44 | [_FN] = LAYOUT_all( | ||
| 45 | //,-------------------------------------------------------------------------| |---------------------------------------------------------------------------. | ||
| 46 | KC_ESC, KC_GRAVE, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_BSPACE, | ||
| 47 | //|-------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 48 | _______, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, KC_SLCK, KC_PAUSE, KC_UP, _______, _______, _______, | ||
| 49 | //|-------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 50 | _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGUP, KC_LEFT,KC_RIGHT, _______, _______, | ||
| 51 | //|-------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 52 | _______, _______, _______, _______, _______, _______, _______, _______, KC_END, KC_PGDN, KC_DOWN, _______, _______, _______, _______, | ||
| 53 | //|-------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 54 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 55 | //`-------------------------------------------------------------------------| |---------------------------------------------------------------------------' | ||
| 56 | ), | ||
| 57 | |||
| 58 | [_LOWER] = LAYOUT_all( | ||
| 59 | //,------------------------------------------------------------------------| |---------------------------------------------------------------------------. | ||
| 60 | KC_ESC, KC_GRAVE, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPACE, | ||
| 61 | //|------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 62 | RGB_MODE_FORWARD, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, | ||
| 63 | //|------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 64 | RGB_MODE_GRADIENT, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 65 | //|------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 66 | RGB_MODE_XMAS, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_RSFT, | ||
| 67 | //|------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 68 | RGB_TOG, KC_LCTL, KC_LALT, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RCTL, MO(_FN) | ||
| 69 | //`------------------------------------------------------------------------| |---------------------------------------------------------------------------' | ||
| 70 | ), | ||
| 71 | |||
| 72 | [_RAISE] = LAYOUT_all( | ||
| 73 | //,------------------------------------------------------------------------| |---------------------------------------------------------------------------. | ||
| 74 | KC_ESC, KC_GRAVE, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPACE, | ||
| 75 | //|------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 76 | RGB_MODE_FORWARD, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, | ||
| 77 | //|------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 78 | RGB_MODE_GRADIENT, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 79 | //|------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 80 | RGB_MODE_XMAS, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_RSFT, | ||
| 81 | //|------------------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+----------+----------| | ||
| 82 | RGB_TOG, KC_LCTL, KC_LALT, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RCTL, MO(_FN) | ||
| 83 | //`------------------------------------------------------------------------| |---------------------------------------------------------------------------' | ||
| 84 | ) | ||
| 85 | }; | ||
| 86 | |||
| 87 | #ifdef OLED_DRIVER_ENABLE | ||
| 88 | |||
| 89 | static void render_qmk_logo(void) { | ||
| 90 | static const char PROGMEM qmk_logo[] = { | ||
| 91 | 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, | ||
| 92 | 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, | ||
| 93 | 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, | ||
| 94 | 0}; | ||
| 95 | oled_write_P(qmk_logo, false); | ||
| 96 | } | ||
| 97 | |||
| 98 | oled_rotation_t oled_init_user(oled_rotation_t rotation) { | ||
| 99 | return isLeftHand ? OLED_ROTATION_180 : OLED_ROTATION_0; | ||
| 100 | } | ||
| 101 | |||
| 102 | void oled_task_user(void) { | ||
| 103 | if (is_keyboard_master()) { | ||
| 104 | // Host Keyboard Layer Status | ||
| 105 | oled_write_P(PSTR("Layer: "), false); | ||
| 106 | switch (get_highest_layer(layer_state)) { | ||
| 107 | case _QWERTY: | ||
| 108 | oled_write_P(PSTR("Default\n"), false); | ||
| 109 | break; | ||
| 110 | case _FN: | ||
| 111 | oled_write_P(PSTR("Function\n"), false); | ||
| 112 | break; | ||
| 113 | default: | ||
| 114 | // Or use the write_ln shortcut over adding '\n' to the end of your string | ||
| 115 | oled_write_ln_P(PSTR("Undefined"), false); | ||
| 116 | } | ||
| 117 | |||
| 118 | // Host Keyboard LED Status | ||
| 119 | led_t led_usb_state = host_keyboard_led_state(); | ||
| 120 | oled_write_P(led_usb_state.num_lock ? PSTR("NUMLCK ") : PSTR(" "), false); | ||
| 121 | oled_write_P(led_usb_state.caps_lock ? PSTR("CAPLCK ") : PSTR(" "), false); | ||
| 122 | oled_write_P(led_usb_state.scroll_lock ? PSTR("SCRLCK ") : PSTR(" "), false); | ||
| 123 | } else { | ||
| 124 | render_qmk_logo(); | ||
| 125 | } | ||
| 126 | } | ||
| 127 | #endif | ||
diff --git a/keyboards/basekeys/slice/rev1_rgb/keymaps/via/rules.mk b/keyboards/basekeys/slice/rev1_rgb/keymaps/via/rules.mk new file mode 100644 index 000000000..1e5b99807 --- /dev/null +++ b/keyboards/basekeys/slice/rev1_rgb/keymaps/via/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| VIA_ENABLE = yes | |||
diff --git a/keyboards/basekeys/slice/rev1_rgb/rev1_rgb.h b/keyboards/basekeys/slice/rev1_rgb/rev1_rgb.h index 31110018d..fdc533158 100644 --- a/keyboards/basekeys/slice/rev1_rgb/rev1_rgb.h +++ b/keyboards/basekeys/slice/rev1_rgb/rev1_rgb.h | |||
| @@ -76,5 +76,23 @@ | |||
| 76 | { R40, R41, R42, R43, R44, KC_NO, KC_NO, KC_NO, KC_NO } \ | 76 | { R40, R41, R42, R43, R44, KC_NO, KC_NO, KC_NO, KC_NO } \ |
| 77 | } | 77 | } |
| 78 | 78 | ||
| 79 | 79 | #define LAYOUT_all( \ | |
| 80 | L00, L01, L02, L03, L04, L05, L06, L07, R00, R01, R02, R03, R04, R05, R06, \ | ||
| 81 | L10, L11, L12, L13, L14, L15, L16, R10, R11, R12, R13, R14, R15, R16, R17, \ | ||
| 82 | L20, L21, L22, L23, L24, L25, L26, R20, R21, R22, R23, R24, R25, R26, \ | ||
| 83 | L30, L31, L32, L33, L34, L35, L36, R30, R31, R32, R33, R34, R35, R36, R37,\ | ||
| 84 | L40, L41, L42, L43, L44, L45, L46, R40, R41, R42, R43, R44 \ | ||
| 85 | ) \ | ||
| 86 | { \ | ||
| 87 | { L00, L01, L02, L03, L04, L05, L06, L07, KC_NO }, \ | ||
| 88 | { L10, L11, L12, L13, L14, L15, L16, KC_NO, KC_NO }, \ | ||
| 89 | { L20, L21, L22, L23, L24, L25, L26, KC_NO, KC_NO }, \ | ||
| 90 | { L30, L31, L32, L33, L34, L35, L36, KC_NO, KC_NO }, \ | ||
| 91 | { L40, L41, L42, L43, L44, L45, L46, KC_NO, KC_NO }, \ | ||
| 92 | { R00, R01, R02, R03, R04, R05, R06, KC_NO, KC_NO }, \ | ||
| 93 | { R10, R11, R12, R13, R14, R15, R16, R17, KC_NO }, \ | ||
| 94 | { R20, R21, R22, R23, R24, R25, R26, KC_NO, KC_NO }, \ | ||
| 95 | { R30, R31, R32, R33, R34, R35, R36, R37, KC_NO }, \ | ||
| 96 | { R40, R41, R42, R43, R44, KC_NO, KC_NO, KC_NO, KC_NO } \ | ||
| 97 | } | ||
| 80 | 98 | ||
