From 4a30ea6a18efcc122fd0b7b3626cc1602227e586 Mon Sep 17 00:00:00 2001 From: Duccio Date: Thu, 13 Oct 2022 20:43:03 +0200 Subject: Add Swoop keyboard (#18436) --- keyboards/bluebell/swoop/keymaps/default/keymap.c | 42 ++++++++ keyboards/bluebell/swoop/keymaps/kyek/config.h | 18 ++++ keyboards/bluebell/swoop/keymaps/kyek/keymap.c | 114 ++++++++++++++++++++++ keyboards/bluebell/swoop/keymaps/kyek/rules.mk | 15 +++ 4 files changed, 189 insertions(+) create mode 100644 keyboards/bluebell/swoop/keymaps/default/keymap.c create mode 100644 keyboards/bluebell/swoop/keymaps/kyek/config.h create mode 100644 keyboards/bluebell/swoop/keymaps/kyek/keymap.c create mode 100644 keyboards/bluebell/swoop/keymaps/kyek/rules.mk (limited to 'keyboards/bluebell/swoop/keymaps') diff --git a/keyboards/bluebell/swoop/keymaps/default/keymap.c b/keyboards/bluebell/swoop/keymaps/default/keymap.c new file mode 100644 index 0000000000..6d66a749d5 --- /dev/null +++ b/keyboards/bluebell/swoop/keymaps/default/keymap.c @@ -0,0 +1,42 @@ +/* Copyright 2022 James White + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +#include QMK_KEYBOARD_H + +enum layers { + _QWERTY +}; + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { +/* + * QWERTY + * ,---------------------------------. ,----------------------------------. + * | Q | W | E | R | T | | Y | U | I | O | P | + * |-----+------+------+------+------| |------+------+------+------+------| + * | A | S | D | F | G | | H | J | K | L | ; | + * |-----+------+------+------+------| ,------+------+------+------+------| + * | Z | X | C | V | B | | N | M | , | . | / | + * `------------+------+------+------| |------+------+------+-------------' + * | LCTL | BSpc | Esc | | Ent | Spc | LAlt | + * `--------------------' `--------------------' + */ + +[_QWERTY] = LAYOUT_split_3x5_3( + KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, + KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, + KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, + KC_LCTL, KC_BSPC, KC_ESC, KC_ENT, KC_SPC, KC_LALT +) +}; diff --git a/keyboards/bluebell/swoop/keymaps/kyek/config.h b/keyboards/bluebell/swoop/keymaps/kyek/config.h new file mode 100644 index 0000000000..e48703e02d --- /dev/null +++ b/keyboards/bluebell/swoop/keymaps/kyek/config.h @@ -0,0 +1,18 @@ +/* Copyright 2022 Duccio Breschi + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +#pragma once +#define ONESHOT_TIMEOUT 1000 +#define COMBO_COUNT 2 diff --git a/keyboards/bluebell/swoop/keymaps/kyek/keymap.c b/keyboards/bluebell/swoop/keymaps/kyek/keymap.c new file mode 100644 index 0000000000..10fde34180 --- /dev/null +++ b/keyboards/bluebell/swoop/keymaps/kyek/keymap.c @@ -0,0 +1,114 @@ +/* Copyright 2022 Duccio Breschi + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +#include QMK_KEYBOARD_H +#include "keymap_italian.h" + +enum layers { + _BASE = 0, + _SYM1, + _EXT, + _FNC, + _SYM2, + _ACC, + _SET, +}; + +// Combo Layers +enum combos { + ACC, + SET, +}; +const uint16_t PROGMEM accent_combo[] = {KC_SPC, MO(_SYM1), COMBO_END}; +const uint16_t PROGMEM settings_combo[] = {MO(_EXT), SFT_T(KC_SPC), COMBO_END}; +combo_t key_combos[COMBO_COUNT] = { + [ACC] = COMBO(accent_combo, MO(_ACC)), + [SET] = COMBO(settings_combo, MO(_SET)), +}; +// ----- + +// Layer Aliases +#define SYM1 MO(_SYM1) +#define EXT MO(_EXT) +#define FNC MO(_FNC) +#define SYM2 MO(_SYM2) +// #define ACC MO(_ACC) +// #define SET MO(_SET) +// Oneshot Aliases +#define OS_CTL OSM(MOD_LCTL) +#define OS_ALT OSM(MOD_LALT) +#define OS_SFT OSM(MOD_LSFT) +#define OS_GUI OSM(MOD_LGUI) +#define OS_RALT OSM(MOD_RALT) +// Other Aliases +#define DEL_WORD LCTL(KC_BSPC) +#define UNDO LCTL(KC_Z) +#define COPY LCTL(KC_C) +#define CUT LCTL(KC_X) +#define PASTE LCTL(KC_V) +#define BACKTICK RALT(KC_MINS) +#define TILDE RALT(KC_EQL) +#define CEGR RSA(KC_E) + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { +[_BASE] = LAYOUT_split_3x5_3( + IT_Q, IT_W, IT_E, IT_R, IT_T, IT_Y, IT_U, IT_I, IT_O, IT_P, + IT_A, IT_S, IT_D, IT_F, IT_G, IT_H, IT_J, IT_K, IT_L, IT_OGRV, + IT_Z, IT_X, IT_C, IT_V, IT_B, IT_N, IT_M, IT_COMM, IT_DOT, IT_UGRV, + XXXXXXX, EXT, SFT_T(KC_SPC), KC_SPC, SYM1, XXXXXXX +), +[_SYM1] = LAYOUT_split_3x5_3( + IT_1, IT_2, IT_3, IT_4, IT_5, IT_6, IT_7, IT_8, IT_9, IT_0, + IT_LABK, IT_PERC, IT_LPRN, IT_LCBR, IT_LBRC, IT_EQL, IT_QUES, IT_QUOT, IT_PLUS, IT_ASTR, + IT_RABK, IT_DLR, IT_RPRN, IT_RCBR, IT_RBRC, IT_AT, IT_EXLM, IT_DQUO, IT_MINS, IT_SLSH, + XXXXXXX, FNC, SYM2, _______, _______, XXXXXXX +), +[_EXT] = LAYOUT_split_3x5_3( + KC_ESC, _______, _______, _______, _______, KC_PAGE_UP, KC_HOME, KC_UP, KC_END, KC_CAPS, + OS_ALT, OS_GUI, OS_SFT, OS_CTL, OS_RALT, KC_PAGE_DOWN, KC_LEFT, KC_DOWN, KC_RIGHT, KC_DELETE, + UNDO, CUT, COPY, KC_TAB, PASTE, DEL_WORD, KC_BSPC, _______, _______, _______, + _______, _______, _______, KC_ENT, FNC, _______ +), +[_FNC] = LAYOUT_split_3x5_3( + KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, + OS_ALT, OS_GUI, OS_SFT, OS_CTL, OS_RALT, KC_F11, KC_F12, KC_PSCR, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______ +), +[_SYM2] = LAYOUT_split_3x5_3( + IT_CIRC, IT_UNDS, IT_PND, IT_EURO, IT_HASH, _______, _______, _______, _______, _______, + BACKTICK, TILDE, IT_BSLS, IT_PIPE, IT_AMPR, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______ +), +[_ACC] = LAYOUT_split_3x5_3( + _______, _______, _______, CEGR, _______, _______, _______, _______, _______, _______, + IT_AGRV, IT_IGRV, IT_OGRV, IT_EGRV, IT_EACU, _______, _______, _______, _______, _______, + _______, _______, _______, IT_UGRV, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______ +), +[_SET] = LAYOUT_split_3x5_3( + _______, _______, _______, RGB_RMOD, RGB_MOD, RGB_VAI, RGB_VAD, _______, _______, _______, + _______, _______, _______, RGB_M_B, RGB_M_P, RGB_HUI, RGB_HUD, _______, _______, _______, + QK_BOOT, _______, _______, RGB_M_R, RGB_TOG, RGB_SAI, RGB_SAD, _______, _______, QK_BOOT, + _______, _______, _______, _______, _______, _______ +), +// [_TEMP] = LAYOUT_split_3x5_3( +// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, +// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, +// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, +// _______, _______, _______, _______, _______, _______ +// ), +}; diff --git a/keyboards/bluebell/swoop/keymaps/kyek/rules.mk b/keyboards/bluebell/swoop/keymaps/kyek/rules.mk new file mode 100644 index 0000000000..6b5678dd27 --- /dev/null +++ b/keyboards/bluebell/swoop/keymaps/kyek/rules.mk @@ -0,0 +1,15 @@ +# Enables Link Time Optimization (LTO) when compiling the keyboard. This makes the process take longer, +# but it can significantly reduce the compiled size (and since the firmware is small, the added time is not noticeable). +LTO_ENABLE = no + +# Audio control and System control +EXTRAKEY_ENABLE = no + +# ENCODER_ENABLE = no +# OLED_DRIVER_ENABLE = no +# WPM_ENABLE = no + +# Enable keyboard underlight functionality +RGBLIGHT_ENABLE = yes + +COMBO_ENABLE = yes -- cgit v1.2.3