summaryrefslogtreecommitdiff
path: root/aktersnurra/ferris
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2023-12-30 14:12:25 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2023-12-30 14:12:41 +0100
commitde958c2e2dd2320c46e81e969a138d8f63f3c802 (patch)
treecc30599266f35155b21ba080e86329d07311580b /aktersnurra/ferris
parent9511f86e0974d2ec48551d2207399566ef208392 (diff)
Move ferris
Diffstat (limited to 'aktersnurra/ferris')
-rw-r--r--aktersnurra/ferris/config.h48
-rw-r--r--aktersnurra/ferris/keymap.c77
-rw-r--r--aktersnurra/ferris/readme.md3
-rw-r--r--aktersnurra/ferris/rules.mk3
4 files changed, 131 insertions, 0 deletions
diff --git a/aktersnurra/ferris/config.h b/aktersnurra/ferris/config.h
new file mode 100644
index 0000000..9888037
--- /dev/null
+++ b/aktersnurra/ferris/config.h
@@ -0,0 +1,48 @@
+/*
+Copyright 2020 Pierre Chevalier <pierrechevalier83@gmail.com>
+
+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 <http://www.gnu.org/licenses/>.
+*/
+
+#pragma once
+// Set the mouse settings to a comfortable speed/accuracy trade-off,
+// assuming a screen refresh rate of 60 Htz or higher
+// The default is 50. This makes the mouse ~3 times faster and more accurate
+#define MOUSEKEY_INTERVAL 16
+// The default is 20. Since we made the mouse about 3 times faster with the
+// previous setting, give it more time to accelerate to max speed to retain
+// precise control over short distances.
+#define MOUSEKEY_TIME_TO_MAX 40
+// The default is 300. Let's try and make this as low as possible while keeping
+// the cursor responsive
+#define MOUSEKEY_DELAY 100
+// It makes sense to use the same delay for the mouseweel
+#define MOUSEKEY_WHEEL_DELAY 100
+// The default is 100
+#define MOUSEKEY_WHEEL_INTERVAL 50
+// The default is 40
+#define MOUSEKEY_WHEEL_TIME_TO_MAX 100
+
+// Pick good defaults for enabling homerow modifiers
+#define TAPPING_TERM 150
+#define PERMISSIVE_HOLD
+#define TAPPING_FORCE_HOLD
+
+// Underglow configuration
+#ifdef RGBLIGHT_ENABLE
+#define RGBLIGHT_ANIMATIONS
+#define RGBLIGHT_HUE_STEP 8
+#define RGBLIGHT_SAT_STEP 8
+#define RGBLIGHT_VAL_STEP 8
+#endif
diff --git a/aktersnurra/ferris/keymap.c b/aktersnurra/ferris/keymap.c
new file mode 100644
index 0000000..ac44ed8
--- /dev/null
+++ b/aktersnurra/ferris/keymap.c
@@ -0,0 +1,77 @@
+// this is the style you want to emulate.
+// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
+
+#include QMK_KEYBOARD_H
+
+// Each layer gets a name for readability, which is then used in the keymap matrix below.
+// The underscores don't mean anything - you can have a layer called STUFF or any other name.
+// Layer names don't all need to be of the same length, obviously, and you can also skip them
+// entirely and just use numbers.
+
+#define KC_HA GUI_T(KC_A)
+#define KC_HR ALT_T(KC_R)
+#define KC_HS CTL_T(KC_S)
+#define KC_HT SFT_T(KC_T)
+
+#define KC_HO GUI_T(KC_O)
+#define KC_HI ALT_T(KC_I)
+#define KC_HE CTL_T(KC_E)
+#define KC_HN SFT_T(KC_N)
+
+#define KC_ALT_CTL LALT(KC_LCTL)
+
+#define NAV LT(_NAV, KC_SPC)
+#define SYM LT(_SYM, KC_BSPC)
+#define NUM LT(_NUM, KC_TAB)
+
+enum { _COLEMAK_DH, _NAV, _NUM, _SYM, _FUN, _MEDIA } layers;
+enum { M_ESC } tap_dances;
+
+// Tap Dance Definitions
+tap_dance_action_t tap_dance_actions[] = {
+ [M_ESC] = ACTION_TAP_DANCE_DOUBLE(KC_M, KC_ESC)
+};
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ [_COLEMAK_DH] = LAYOUT( /* COLEMAK MOD DH */
+ KC_Q, KC_W, KC_F, KC_P, KC_B, KC_J, KC_L, KC_U, KC_Y, KC_SCLN,
+ KC_HA, KC_HR, KC_HS, KC_HT, KC_G, TD(M_ESC), KC_HN, KC_HE, KC_HI, KC_HO,
+ KC_Z, KC_X, KC_C, KC_D, KC_V, KC_K, KC_H, KC_COMM, KC_DOT, KC_SLSH,
+ KC_ENT, NAV, SYM, NUM
+ ),
+
+ [_NAV] = LAYOUT( /* [> Navigation layer <] */
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
+ KC_TRNS, KC_LPRN, KC_LBRC, KC_RBRC, KC_RPRN, KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT, KC_TRNS,
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_BSLS,
+ KC_TRNS, KC_TRNS, KC_BSPC, KC_LSFT
+ ),
+
+ [_SYM] = LAYOUT( /* [> Symbol layer <] */
+ KC_GRV, KC_EXLM, KC_PERC, KC_DLR, KC_AT, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
+ KC_HASH, KC_QUOT, KC_ASTR, KC_MINS, KC_EQL, KC_PIPE, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
+ KC_TRNS, KC_TRNS, KC_AMPR, KC_CIRC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_BSLS,
+ KC_TRNS, KC_SPC, KC_TRNS, KC_TRNS
+ ),
+
+ [_NUM] = LAYOUT( /* [> Number layer <] */
+ KC_TRNS, KC_4, KC_5, KC_6, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
+ KC_TRNS, KC_1, KC_2, KC_3, KC_0, KC_TRNS, KC_7, KC_8, KC_9, KC_TRNS,
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
+ MO(_MEDIA), MO(_FUN), KC_TRNS, KC_TRNS
+ ),
+
+ [_MEDIA] = LAYOUT( /* [> Media layer <] */
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_MPRV, KC_MPLY, KC_MNXT, KC_TRNS,
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_VOLD, KC_VOLU, KC_MUTE, KC_TRNS,
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
+ ),
+
+ [_FUN] = LAYOUT( /* [> Function layer <] */
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, QK_BOOT,
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_ALT_CTL, KC_TRNS, KC_TRNS, KC_F1, KC_F2, KC_F3, KC_TRNS,
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
+ )
+};
diff --git a/aktersnurra/ferris/readme.md b/aktersnurra/ferris/readme.md
new file mode 100644
index 0000000..ce2cf95
--- /dev/null
+++ b/aktersnurra/ferris/readme.md
@@ -0,0 +1,3 @@
+The Keymap
+
+TBC with some nice images...
diff --git a/aktersnurra/ferris/rules.mk b/aktersnurra/ferris/rules.mk
new file mode 100644
index 0000000..ef39eb0
--- /dev/null
+++ b/aktersnurra/ferris/rules.mk
@@ -0,0 +1,3 @@
+BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
+TAP_DANCE_ENABLE = yes
+BOOTLOADER = atmel-dfu