diff options
| author | Ibnu Daru Aji <ibnuda@users.noreply.github.com> | 2022-01-14 00:19:51 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-13 09:19:51 -0800 |
| commit | 2f68e058841739c936bbe4fc2ddfe44409b68aab (patch) | |
| tree | 50d08e0a87ab2fa160b37061a67b53d743ea92dd /keyboards | |
| parent | 5c583851f965920a84847940b73562d5f26b5846 (diff) | |
| download | qmk_firmware-2f68e058841739c936bbe4fc2ddfe44409b68aab.tar.gz qmk_firmware-2f68e058841739c936bbe4fc2ddfe44409b68aab.zip | |
[Keyboard] new layout for squiggle (#15683)
Diffstat (limited to 'keyboards')
| -rw-r--r-- | keyboards/squiggle/keymaps/defaultfull/config.h | 22 | ||||
| -rw-r--r-- | keyboards/squiggle/keymaps/defaultfull/keymap.c | 157 | ||||
| -rw-r--r-- | keyboards/squiggle/keymaps/defaultfull/readme.md | 6 | ||||
| -rw-r--r-- | keyboards/squiggle/keymaps/defaultfull/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/squiggle/readme.md | 7 | ||||
| -rw-r--r-- | keyboards/squiggle/rev1/rev1.h | 18 |
6 files changed, 209 insertions, 2 deletions
diff --git a/keyboards/squiggle/keymaps/defaultfull/config.h b/keyboards/squiggle/keymaps/defaultfull/config.h new file mode 100644 index 000000000..1c8cff4bb --- /dev/null +++ b/keyboards/squiggle/keymaps/defaultfull/config.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* Copyright 2022 Ibnu D. Aji | ||
| 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 | #define COMBO_TERM 100 | ||
| 20 | #define COMBO_COUNT 38 | ||
| 21 | #define IGNORE_MOD_TAP_INTERRUPT | ||
| 22 | #define PERMISSIVE_HOLD | ||
diff --git a/keyboards/squiggle/keymaps/defaultfull/keymap.c b/keyboards/squiggle/keymaps/defaultfull/keymap.c new file mode 100644 index 000000000..97785f061 --- /dev/null +++ b/keyboards/squiggle/keymaps/defaultfull/keymap.c | |||
| @@ -0,0 +1,157 @@ | |||
| 1 | /* Copyright 2020 Ibnu D. Aji | ||
| 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 for combos. | ||
| 19 | enum combos { | ||
| 20 | // left hand combinations. | ||
| 21 | Q_W, | ||
| 22 | W_E, | ||
| 23 | E_R, | ||
| 24 | Z_X, | ||
| 25 | C_X, | ||
| 26 | C_V, | ||
| 27 | |||
| 28 | // right hand combinations. | ||
| 29 | P_O, | ||
| 30 | O_U, | ||
| 31 | U_I, | ||
| 32 | SLASH_DOT, | ||
| 33 | DOT_COMMA, | ||
| 34 | COMMA_M, | ||
| 35 | |||
| 36 | // both hands combinations. | ||
| 37 | SLASH_Z, | ||
| 38 | COMMA_X, | ||
| 39 | J_F, | ||
| 40 | }; | ||
| 41 | |||
| 42 | enum { | ||
| 43 | _BASE, | ||
| 44 | _LOWER, | ||
| 45 | _RAISE, | ||
| 46 | _ADJUST, | ||
| 47 | }; | ||
| 48 | |||
| 49 | // thumb keys. | ||
| 50 | #define ALT_ENT ALT_T(KC_ENT) | ||
| 51 | #define SFT_ESC SFT_T(KC_ESC) | ||
| 52 | |||
| 53 | // home row mods. | ||
| 54 | #define CT_S RCTL_T(KC_S) | ||
| 55 | #define CT_L RCTL_T(KC_L) | ||
| 56 | #define SH_A RSFT_T(KC_A) | ||
| 57 | #define SH_SCLN RSFT_T(KC_SCLN) | ||
| 58 | #define AL_D RALT_T(KC_D) | ||
| 59 | #define AL_K RALT_T(KC_K) | ||
| 60 | #define GU_G RGUI_T(KC_G) | ||
| 61 | #define GU_H RGUI_T(KC_H) | ||
| 62 | |||
| 63 | // layer toggle. | ||
| 64 | #define LW_BSPC LT(_LOWER, KC_BSPC) | ||
| 65 | #define RS_SPC LT(_RAISE, KC_SPC) | ||
| 66 | |||
| 67 | // idk, man. not used, i guess. | ||
| 68 | #define RAISE MO(_RAISE) | ||
| 69 | #define LOWER MO(_LOWER) | ||
| 70 | #define ADDDD MO(_ADJUST) | ||
| 71 | #define MUIS MO(_MUIS) | ||
| 72 | |||
| 73 | // common shortcuts for windows and linux that i use. | ||
| 74 | #define NXTTAB LCTL(KC_PGDN) | ||
| 75 | #define PRVTAB LCTL(KC_PGUP) | ||
| 76 | #define UPTAB LCTL(LSFT(KC_PGUP)) | ||
| 77 | #define DNTAB LCTL(LSFT(KC_PGDN)) | ||
| 78 | #define NXTWIN LALT(KC_TAB) | ||
| 79 | #define PRVWIN LALT(LSFT(KC_TAB)) | ||
| 80 | #define CALDL LCTL(LALT(KC_DELT)) | ||
| 81 | #define TSKMGR LCTL(LSFT(KC_ESC)) | ||
| 82 | #define EXPLR LGUI(KC_E) | ||
| 83 | #define LCKGUI LGUI(KC_L) | ||
| 84 | #define CONPST LSFT(KC_INS) | ||
| 85 | #define CLSGUI LALT(KC_F4) | ||
| 86 | |||
| 87 | // left hand combinations. | ||
| 88 | const uint16_t PROGMEM q_w_combo[] = {KC_Q, KC_W, COMBO_END}; | ||
| 89 | const uint16_t PROGMEM w_e_combo[] = {KC_W, KC_E, COMBO_END}; | ||
| 90 | const uint16_t PROGMEM e_r_combo[] = {KC_E, KC_R, COMBO_END}; | ||
| 91 | const uint16_t PROGMEM z_x_combo[] = {KC_Z, KC_X, COMBO_END}; | ||
| 92 | const uint16_t PROGMEM x_c_combo[] = {KC_X, KC_C, COMBO_END}; | ||
| 93 | const uint16_t PROGMEM c_v_combo[] = {KC_C, KC_V, COMBO_END}; | ||
| 94 | |||
| 95 | // right hand combinations. | ||
| 96 | const uint16_t PROGMEM p_o_combo[] = {KC_P, KC_O, COMBO_END}; | ||
| 97 | const uint16_t PROGMEM o_u_combo[] = {KC_O, KC_U, COMBO_END}; | ||
| 98 | const uint16_t PROGMEM u_i_combo[] = {KC_U, KC_I, COMBO_END}; | ||
| 99 | const uint16_t PROGMEM slash_dot_combo[] = {KC_SLSH, KC_DOT, COMBO_END}; | ||
| 100 | const uint16_t PROGMEM dot_comma_combo[] = {KC_DOT, KC_COMM,COMBO_END}; | ||
| 101 | const uint16_t PROGMEM comma_m_combo[] = {KC_COMM, KC_M, COMBO_END}; | ||
| 102 | |||
| 103 | // both hand combinations. | ||
| 104 | const uint16_t PROGMEM z_slash_combo[] = {KC_Z, KC_SLSH, COMBO_END}; | ||
| 105 | const uint16_t PROGMEM x_comma_combo[] = {KC_X, KC_COMM, COMBO_END}; | ||
| 106 | const uint16_t PROGMEM j_f_combo[] = {KC_F, KC_J, COMBO_END}; | ||
| 107 | |||
| 108 | combo_t key_combos[COMBO_COUNT] = { | ||
| 109 | // left hand combinations. | ||
| 110 | [Q_W] = COMBO(q_w_combo, KC_TAB), | ||
| 111 | [W_E] = COMBO(w_e_combo, KC_DQT), | ||
| 112 | [E_R] = COMBO(e_r_combo, KC_UNDS), | ||
| 113 | [Z_X] = COMBO(z_x_combo, KC_ENT), | ||
| 114 | [C_X] = COMBO(x_c_combo, LCTL(KC_W)), | ||
| 115 | [C_V] = COMBO(c_v_combo, KC_DELT), | ||
| 116 | |||
| 117 | // right hand combinations. | ||
| 118 | [P_O] = COMBO(p_o_combo, KC_BSPC), | ||
| 119 | [O_U] = COMBO(o_u_combo, KC_QUOT), | ||
| 120 | [U_I] = COMBO(u_i_combo, KC_MINS), | ||
| 121 | [SLASH_DOT] = COMBO(slash_dot_combo, KC_PIPE), | ||
| 122 | [DOT_COMMA] = COMBO(dot_comma_combo, KC_APP), | ||
| 123 | [COMMA_M] = COMBO(comma_m_combo, KC_DELT), | ||
| 124 | |||
| 125 | // both hand combinations. | ||
| 126 | [SLASH_Z] = COMBO(z_slash_combo, KC_HOME), | ||
| 127 | [COMMA_X] = COMBO(x_comma_combo, KC_END), | ||
| 128 | [J_F] = COMBO(j_f_combo, KC_ENT), | ||
| 129 | }; | ||
| 130 | |||
| 131 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 132 | [_BASE] = LAYOUT_full( | ||
| 133 | KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, | ||
| 134 | SH_A, CT_S, AL_D, KC_F, GU_G, GU_H, KC_J, AL_K, CT_L, SH_SCLN, | ||
| 135 | KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH, | ||
| 136 | KC_LCTL,KC_LGUI,KC_LALT,LW_BSPC,SFT_ESC, ALT_ENT,RS_SPC, KC_RALT,KC_RGUI,KC_RCTL | ||
| 137 | ), | ||
| 138 | |||
| 139 | [_RAISE] = LAYOUT_full( | ||
| 140 | KC_EXLM,KC_AT, KC_UP, KC_LCBR,KC_RCBR, KC_BSLS,KC_7, KC_8, KC_9, KC_ASTR , | ||
| 141 | KC_HASH,KC_LEFT,KC_DOWN,KC_RGHT,KC_DLR, KC_EQL, KC_4, KC_5, KC_6, KC_0 , | ||
| 142 | KC_LBRC,KC_RBRC,KC_LPRN,KC_RPRN,KC_AMPR, KC_GRV, KC_1, KC_2, KC_3, KC_PLUS , | ||
| 143 | _______,_______,_______,ADDDD, _______, ALT_ENT,RS_SPC, _______,_______,_______ | ||
| 144 | ), | ||
| 145 | [_LOWER] = LAYOUT_full( | ||
| 146 | KC_ESC, KC_QUES,KC_UNDS,KC_F1, KC_F2, KC_F3, KC_F4, KC_MINS,KC_SLSH,KC_BSPC , | ||
| 147 | KC_LSFT,KC_TAB, KC_PGUP,KC_F5, KC_F6, KC_F7, KC_F8, KC_HOME,KC_LALT,KC_ENT , | ||
| 148 | KC_CLCK,KC_SLCK,KC_PGDN,KC_F9, KC_F10, KC_F11, KC_F12, KC_END, KC_INS, KC_SLSH , | ||
| 149 | _______,_______,_______,ADDDD, _______, KC_DELT,ADDDD, _______,_______,_______ | ||
| 150 | ), | ||
| 151 | [_ADJUST] = LAYOUT_full( | ||
| 152 | _______,EXPLR, KC_UP, PRVTAB, PRVWIN, NXTWIN, NXTTAB, _______,_______,LCKGUI, | ||
| 153 | TSKMGR, KC_LEFT,KC_DOWN,KC_RGHT,UPTAB, DNTAB, KC_ENT, KC_LGUI,_______,CALDL, | ||
| 154 | _______,CLSGUI, _______,CONPST, RESET, _______,_______,_______,_______,_______, | ||
| 155 | _______,_______,_______,_______,_______, _______,_______,_______,_______,_______ | ||
| 156 | ), | ||
| 157 | }; | ||
diff --git a/keyboards/squiggle/keymaps/defaultfull/readme.md b/keyboards/squiggle/keymaps/defaultfull/readme.md new file mode 100644 index 000000000..41e1ef7b1 --- /dev/null +++ b/keyboards/squiggle/keymaps/defaultfull/readme.md | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | # The default keymap for squiggle | ||
| 2 | |||
| 3 | Because of the key count in this board is less than 40, it uses combo | ||
| 4 | extensively. | ||
| 5 | For example, to input `KC_TAB`, you have to press `KC_Q` and `KC_W` | ||
| 6 | simultaneously. | ||
diff --git a/keyboards/squiggle/keymaps/defaultfull/rules.mk b/keyboards/squiggle/keymaps/defaultfull/rules.mk new file mode 100644 index 000000000..ab1e43818 --- /dev/null +++ b/keyboards/squiggle/keymaps/defaultfull/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| COMBO_ENABLE = yes | |||
diff --git a/keyboards/squiggle/readme.md b/keyboards/squiggle/readme.md index dd1256e74..8d7b58125 100644 --- a/keyboards/squiggle/readme.md +++ b/keyboards/squiggle/readme.md | |||
| @@ -5,17 +5,20 @@ | |||
| 5 | It's a keyboard family which has the following requirements: | 5 | It's a keyboard family which has the following requirements: |
| 6 | 6 | ||
| 7 | - 5 columns per hand. | 7 | - 5 columns per hand. |
| 8 | - At most 3 keys for each side's thumb row. | ||
| 9 | - No numrow. | 8 | - No numrow. |
| 10 | - Split. | 9 | - Split. |
| 11 | - Symmetric. | 10 | - Symmetric. |
| 12 | 11 | ||
| 13 | * Keyboard Maintainer: [ibnuda](https://github.com/ibnuda) | 12 | * Keyboard Maintainer: [ibnuda](https://github.com/ibnuda) |
| 14 | * Hardware Supported: Atmega32u4. | 13 | * Hardware Supported: Atmega32u4. |
| 15 | * Hardware Availability: [shop](https://dactyl.bigcartel.com/product/squiggle-keyboard-kit) or [repo](https://github.com/ibnuda/squiggle). | 14 | * Hardware Availability: [repo](https://github.com/ibnuda/squiggle). |
| 16 | 15 | ||
| 17 | Make example for this keyboard (after setting up your build environment): | 16 | Make example for this keyboard (after setting up your build environment): |
| 18 | 17 | ||
| 19 | make squiggle:default | 18 | make squiggle:default |
| 20 | 19 | ||
| 21 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | 20 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). |
| 21 | |||
| 22 | To enter to the bootloader you need to: | ||
| 23 | |||
| 24 | * Press the key mapped to `RESET` | ||
diff --git a/keyboards/squiggle/rev1/rev1.h b/keyboards/squiggle/rev1/rev1.h index e1eec2059..73cb7abd2 100644 --- a/keyboards/squiggle/rev1/rev1.h +++ b/keyboards/squiggle/rev1/rev1.h | |||
| @@ -99,3 +99,21 @@ | |||
| 99 | { R24, R23, R22, R21, R20 }, \ | 99 | { R24, R23, R22, R21, R20 }, \ |
| 100 | { ___, R33, R32, R31, R30 }, \ | 100 | { ___, R33, R32, R31, R30 }, \ |
| 101 | } | 101 | } |
| 102 | |||
| 103 | #define LAYOUT_full(\ | ||
| 104 | L00, L01, L02, L03, L04, R00, R01, R02, R03, R04, \ | ||
| 105 | L10, L11, L12, L13, L14, R10, R11, R12, R13, R14, \ | ||
| 106 | L20, L21, L22, L23, L24, R20, R21, R22, R23, R24, \ | ||
| 107 | L30, L31, L32, L33, L34, R30, R31, R32, R33, R34 \ | ||
| 108 | ) \ | ||
| 109 | { \ | ||
| 110 | { L00, L01, L02, L03, L04 }, \ | ||
| 111 | { L10, L11, L12, L13, L14 }, \ | ||
| 112 | { L20, L21, L22, L23, L24 }, \ | ||
| 113 | { L30, L31, L32, L33, L34 }, \ | ||
| 114 | { R04, R03, R02, R01, R00 }, \ | ||
| 115 | { R14, R13, R12, R11, R10 }, \ | ||
| 116 | { R24, R23, R22, R21, R20 }, \ | ||
| 117 | { R34, R33, R32, R31, R30 }, \ | ||
| 118 | } | ||
| 119 | |||
