diff options
author | Alexander Kagno <ar@kagno.org> | 2021-04-19 06:17:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-18 23:17:34 -0700 |
commit | ef6802ca604eb6e011498fe0bbbb69a3915e0580 (patch) | |
tree | 71baa251d1b63faffe4e6cc7e03b4babc384f33e /keyboards/preonic | |
parent | c7adb7a352c50704401efdbceb46ead12c4de2e2 (diff) | |
download | qmk_firmware-ef6802ca604eb6e011498fe0bbbb69a3915e0580.tar.gz qmk_firmware-ef6802ca604eb6e011498fe0bbbb69a3915e0580.zip |
New keyboard keymap, small keymap updates to mm2 keymap (#12310)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Alex <alex@turncommerce.com>
Diffstat (limited to 'keyboards/preonic')
-rw-r--r-- | keyboards/preonic/keymaps/arkag/config.h | 30 | ||||
-rw-r--r-- | keyboards/preonic/keymaps/arkag/keymap.c | 77 | ||||
-rw-r--r-- | keyboards/preonic/keymaps/arkag/readme.md | 1 | ||||
-rw-r--r-- | keyboards/preonic/keymaps/arkag/rules.mk | 17 |
4 files changed, 125 insertions, 0 deletions
diff --git a/keyboards/preonic/keymaps/arkag/config.h b/keyboards/preonic/keymaps/arkag/config.h new file mode 100644 index 000000000..1b42e6ef9 --- /dev/null +++ b/keyboards/preonic/keymaps/arkag/config.h | |||
@@ -0,0 +1,30 @@ | |||
1 | /* Copyright 2021 Alex Kagno | ||
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 | #ifdef AUDIO_ENABLE | ||
20 | # define STARTUP_SONG SONG(STARTUP_SOUND) | ||
21 | # define GOODBYE_SONG SONG(GOODBYE_SOUND) | ||
22 | # define AUDIO_CLICKY | ||
23 | # define AUDIO_CLICKY_FREQ_RANDOMNESS 1.0f | ||
24 | # define MIDI_BASIC | ||
25 | # define MUSIC_MASK keycode != KC_NO | ||
26 | #endif | ||
27 | |||
28 | // save me space! | ||
29 | #define NO_ACTION_MACRO | ||
30 | #define NO_ACTION_FUNCTION | ||
diff --git a/keyboards/preonic/keymaps/arkag/keymap.c b/keyboards/preonic/keymaps/arkag/keymap.c new file mode 100644 index 000000000..42b875d67 --- /dev/null +++ b/keyboards/preonic/keymaps/arkag/keymap.c | |||
@@ -0,0 +1,77 @@ | |||
1 | /* Copyright 2021 Alex Kagno | ||
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 | #include "arkag.h" | ||
18 | #include "muse.h" | ||
19 | |||
20 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
21 | |||
22 | [_QWERTY] = LAYOUT_preonic_grid( | ||
23 | M_EHYPR, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, M_EHYPR, | ||
24 | KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, | ||
25 | KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
26 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, | ||
27 | KC_LCTL, KC_LGUI, KC_LALT, MEDIA, SYMBOL, KC_SPC, M_LMHYP, ARROW, FUNCT, XXXXXXX, KC_RALT, KC_LEAD), | ||
28 | |||
29 | [_SYMBOL] = LAYOUT_preonic_grid( | ||
30 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
31 | KC_GRV, KC_LPRN, KC_RPRN, KC_PLUS, KC_UNDS, KC_CIRC, KC_AMPR, KC_7, KC_8, KC_9, _______, _______, | ||
32 | KC_LCBR, KC_LBRC, KC_RBRC, KC_EQL, KC_MINS, KC_ASTR, KC_PIPE, KC_4, KC_5, KC_6, _______, KC_NLCK, | ||
33 | KC_RCBR, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_PDOT, KC_1, KC_2, KC_3, KC_BSLS, KC_PENT, | ||
34 | M_DASH, KC_TILD, _______, KEEB, _______, _______, _______, KC_0, KC_PSLS, KC_PMNS, KC_PPLS, KC_PAST), | ||
35 | |||
36 | [_MEDIA] = LAYOUT_preonic_grid( | ||
37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
38 | _______, _______, _______, KC_VOLU, _______, _______, _______, _______, _______, _______, _______, _______, | ||
39 | _______, _______, KC_MPRV, KC_VOLD, KC_MNXT, _______, _______, _______, _______, _______, _______, _______, | ||
40 | KC_MPLY, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
41 | KC_MUTE, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), | ||
42 | |||
43 | [_ARROW] = LAYOUT_preonic_grid( | ||
44 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
45 | _______, _______, _______, _______, _______, _______, _______, _______, KC_UP, _______, _______, _______, | ||
46 | _______, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, | ||
47 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
48 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), | ||
49 | |||
50 | [_FUNCT] = LAYOUT_preonic_grid( | ||
51 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
52 | _______, _______, _______, KC_END, _______, _______, _______, _______, _______, _______, _______, _______, | ||
53 | _______, _______, _______, _______, _______, _______, KC_HOME, _______, _______, _______, _______, _______, | ||
54 | M_SFTY, _______, _______, KC_CALC, _______, _______, _______, _______, _______, _______, _______, KC_CAPS, | ||
55 | _______, _______, _______, _______, _______, _______, M_AEST, _______, _______, _______, _______, M_OS ), | ||
56 | |||
57 | [_KEEB] = LAYOUT_preonic_grid( | ||
58 | CK_TOGG, AU_TOG, MU_TOG, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
59 | M_USSR, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
60 | _______, BL_TOGG, BL_STEP, BL_INC, BL_DEC, BL_BRTG, _______, _______, _______, _______, _______, _______, | ||
61 | RGB_M_P, RGB_TOG, RGB_MOD, RGB_VAI, RGB_VAD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, _______, _______, _______, | ||
62 | RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), | ||
63 | |||
64 | }; | ||
65 | |||
66 | #ifdef AUDIO_ENABLE | ||
67 | bool music_mask_user(uint16_t keycode) { | ||
68 | switch (keycode) { | ||
69 | case MU_TOG: | ||
70 | case SYMBOL: | ||
71 | case KEEB: | ||
72 | return false; | ||
73 | default: | ||
74 | return true; | ||
75 | } | ||
76 | } | ||
77 | #endif | ||
diff --git a/keyboards/preonic/keymaps/arkag/readme.md b/keyboards/preonic/keymaps/arkag/readme.md new file mode 100644 index 000000000..e911968dd --- /dev/null +++ b/keyboards/preonic/keymaps/arkag/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default Preonic layout - largely based on the Planck's \ No newline at end of file | |||
diff --git a/keyboards/preonic/keymaps/arkag/rules.mk b/keyboards/preonic/keymaps/arkag/rules.mk new file mode 100644 index 000000000..8b04cf2aa --- /dev/null +++ b/keyboards/preonic/keymaps/arkag/rules.mk | |||
@@ -0,0 +1,17 @@ | |||
1 | BOOTMAGIC_ENABLE = lite | ||
2 | MOUSEKEY_ENABLE = no | ||
3 | STENO_ENABLE = no | ||
4 | EXTRAKEY_ENABLE = yes | ||
5 | CONSOLE_ENABLE = no | ||
6 | COMMAND_ENABLE = no | ||
7 | SLEEP_LED_ENABLE = yes | ||
8 | NKRO_ENABLE = yes | ||
9 | BACKLIGHT_ENABLE = no | ||
10 | AUDIO_ENABLE = yes | ||
11 | RGBLIGHT_ENABLE = yes | ||
12 | TAP_DANCE_ENABLE = no | ||
13 | UNICODE_ENABLE = yes | ||
14 | LEADER_ENABLE = yes | ||
15 | |||
16 | # from default | ||
17 | SRC += muse.c | ||