parent
f03aec28fb
commit
9c2505676c
|
@ -0,0 +1,33 @@
|
||||||
|
/* Copyright 2022 Khoa Truong <foureight84@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
|
||||||
|
|
||||||
|
#define EE_HANDS
|
||||||
|
|
||||||
|
/* clear default encoder def */
|
||||||
|
#undef TAP_CODE_DELAY
|
||||||
|
|
||||||
|
/* encoder support */
|
||||||
|
#define TAP_CODE_DELAY 100
|
||||||
|
|
||||||
|
#define SPLIT_WPM_ENABLE
|
||||||
|
#define SPLIT_OLED_ENABLE
|
||||||
|
|
||||||
|
#define POINTING_DEVICE_ROTATION_90
|
||||||
|
#define SPLIT_POINTING_ENABLE
|
||||||
|
#define POINTING_DEVICE_RIGHT
|
||||||
|
#define POINTING_DEVICE_TASK_THROTTLE_MS 8
|
|
@ -0,0 +1,616 @@
|
||||||
|
/* Copyright 2022 Khoa Truong <foureight84@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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include QMK_KEYBOARD_H
|
||||||
|
#include <string.h>
|
||||||
|
#include "lib/lib8tion/lib8tion.h"
|
||||||
|
|
||||||
|
|
||||||
|
enum sofle_layers {
|
||||||
|
/* _M_XYZ = Mac Os, _W_XYZ = Win/Linux */
|
||||||
|
_QWERTY,
|
||||||
|
_COLEMAK,
|
||||||
|
_LOWER,
|
||||||
|
_RAISE,
|
||||||
|
_ADJUST,
|
||||||
|
_MOUSE,
|
||||||
|
};
|
||||||
|
|
||||||
|
enum custom_keycodes {
|
||||||
|
KC_QWERTY = SAFE_RANGE,
|
||||||
|
KC_COLEMAK,
|
||||||
|
KC_LOWER,
|
||||||
|
KC_RAISE,
|
||||||
|
KC_ADJUST,
|
||||||
|
KC_PRVWD,
|
||||||
|
KC_NXTWD,
|
||||||
|
KC_LSTRT,
|
||||||
|
KC_LEND,
|
||||||
|
KC_DLINE,
|
||||||
|
KC_MOUSE,
|
||||||
|
};
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
/*
|
||||||
|
* QWERTY
|
||||||
|
* ,-----------------------------------------. ,-----------------------------------------.
|
||||||
|
* | ESC | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | Bspc |
|
||||||
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
|
* | Tab | Q | W | E | R | T | | Y | U | I | O | P | \ |
|
||||||
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
|
* |LCtrl | A | S | D | F | G |-------. ,-------| H | J | K | L | ; | ' |
|
||||||
|
* |------+------+------+------+------+------| MUTE | | |------+------+------+------+------+------|
|
||||||
|
* |LShift| Z | X | C | V | B |-------| |-------| N | M | , | . | / |RShift|
|
||||||
|
* `-----------------------------------------/ / \ \-----------------------------------------'
|
||||||
|
* | [ | LGUI | LAlt |LOWER | /Space / \Enter \ |RAISE | RCTR | RAlt | ] |
|
||||||
|
* | | | | |/ / \ \ | | | | |
|
||||||
|
* `----------------------------------' '------''---------------------------'
|
||||||
|
*/
|
||||||
|
|
||||||
|
[_QWERTY] = LAYOUT( \
|
||||||
|
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, \
|
||||||
|
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS, \
|
||||||
|
KC_LCTRL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, \
|
||||||
|
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_MUTE, XXXXXXX,KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, \
|
||||||
|
KC_LBRC ,KC_LGUI, KC_LALT, KC_LOWER, KC_SPC, KC_ENT, KC_RAISE, KC_RCTRL, KC_RALT, KC_RBRC \
|
||||||
|
),
|
||||||
|
/*
|
||||||
|
* COLEMAK
|
||||||
|
* ,-----------------------------------------. ,-----------------------------------------.
|
||||||
|
* | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | ` |
|
||||||
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
|
* | ESC | Q | W | F | P | G | | J | L | U | Y | ; | Bspc |
|
||||||
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
|
* | TAB | A | R | S | T | D |-------. ,-------| H | N | E | I | O | ' |
|
||||||
|
* |------+------+------+------+------+------| MUTE | | |------+------+------+------+------+------|
|
||||||
|
* |LShift| Z | X | C | V | B |-------| |-------| K | M | , | . | / |RShift|
|
||||||
|
* `-----------------------------------------/ / \ \-----------------------------------------'
|
||||||
|
* | LGUI | LAlt | LCTR |LOWER | /Enter / \Space \ |RAISE | RCTR | RAlt | RGUI |
|
||||||
|
* | | | | |/ / \ \ | | | | |
|
||||||
|
* `----------------------------------' '------''---------------------------'
|
||||||
|
*/
|
||||||
|
|
||||||
|
[_COLEMAK] = LAYOUT( \
|
||||||
|
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_GRV, \
|
||||||
|
KC_ESC, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC, \
|
||||||
|
KC_TAB, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, \
|
||||||
|
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_MUTE, XXXXXXX,KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, \
|
||||||
|
KC_LGUI,KC_LALT,KC_LCTRL,KC_LOWER, KC_ENT, KC_SPC, KC_RAISE, KC_RCTRL, KC_RALT, KC_RGUI \
|
||||||
|
),
|
||||||
|
/* LOWER
|
||||||
|
* ,-----------------------------------------. ,-----------------------------------------.
|
||||||
|
* | F1 | F2 | F3 | F4 | F5 | F6 | | F7 | F8 | F9 | F10 | F11 | F12 |
|
||||||
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
|
* | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | |
|
||||||
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
|
* | MOUSE| ! | @ | # | $ | % |-------. ,-------| ^ | & | * | ( | ) | | |
|
||||||
|
* |------+------+------+------+------+------| MUTE | | |------+------+------+------+------+------|
|
||||||
|
* | Shift| = | - | + | { | } |-------| |-------| [ | ] | ; | : | \ | Shift|
|
||||||
|
* `-----------------------------------------/ / \ \-----------------------------------------'
|
||||||
|
* | LGUI | LAlt | LCTR |LOWER | /Enter / \Space \ |RAISE | RCTR | RAlt | RGUI |
|
||||||
|
* | | | | |/ / \ \ | | | | |
|
||||||
|
* `----------------------------------' '------''---------------------------'
|
||||||
|
*/
|
||||||
|
[_LOWER] = LAYOUT( \
|
||||||
|
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_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, \
|
||||||
|
KC_MOUSE, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_PIPE, \
|
||||||
|
_______, KC_EQL, KC_MINS, KC_PLUS, KC_LCBR, KC_RCBR, _______, _______, KC_LBRC, KC_RBRC, KC_SCLN, KC_COLN, KC_BSLS, _______, \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______\
|
||||||
|
),
|
||||||
|
/* RAISE
|
||||||
|
* ,----------------------------------------. ,-----------------------------------------.
|
||||||
|
* | | | | | | | | | | | | | |
|
||||||
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
|
* | Esc | Ins | Pscr | Menu | | | | | PWrd | Up | NWrd | DLine| Bspc |
|
||||||
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
|
* | Tab | LAt | LCtl |LShift| | Caps |-------. ,-------| | Left | Down | Rigth| Del | Bspc |
|
||||||
|
* |------+------+------+------+------+------| MPLY | | |------+------+------+------+------+------|
|
||||||
|
* |Shift | Undo | Cut | Copy | Paste| |-------| |-------| | LStr | | LEnd | | Shift|
|
||||||
|
* `-----------------------------------------/ / \ \-----------------------------------------'
|
||||||
|
* | LGUI | LAlt | LCTR |LOWER | /Enter / \Space \ |RAISE | RCTR | RAlt | RGUI |
|
||||||
|
* | | | | |/ / \ \ | | | | |
|
||||||
|
* `----------------------------------' '------''---------------------------'
|
||||||
|
*/
|
||||||
|
[_RAISE] = LAYOUT( \
|
||||||
|
_______, _______ , _______ , _______ , _______ , _______, _______, _______ , _______, _______ , _______ ,_______, \
|
||||||
|
_______, KC_INS, KC_PSCR, KC_APP, XXXXXXX, XXXXXXX, KC_PGUP, KC_PRVWD, KC_UP, KC_NXTWD,KC_DLINE, KC_BSPC, \
|
||||||
|
_______, KC_LALT, KC_LCTL, KC_LSFT, XXXXXXX, KC_CAPS, KC_PGDN, KC_LEFT, KC_DOWN, KC_RGHT, KC_DEL, KC_BSPC, \
|
||||||
|
_______,KC_UNDO, KC_CUT, KC_COPY, KC_PASTE, XXXXXXX, KC_MPLY, _______, XXXXXXX, KC_LSTRT, XXXXXXX, KC_LEND, XXXXXXX, _______, \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
||||||
|
),
|
||||||
|
/* ADJUST
|
||||||
|
* ,-----------------------------------------. ,-----------------------------------------.
|
||||||
|
* | | | | | | | | | | | | | |
|
||||||
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
|
* | RESET| |QWERTY|COLEMAK| | | | | | | | | |
|
||||||
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
|
* | | |MACWIN| | | |-------. ,-------| | VOLDO| MUTE | VOLUP| | |
|
||||||
|
* |------+------+------+------+------+------| MUTE | | |------+------+------+------+------+------|
|
||||||
|
* | | | | | | |-------| |-------| | PREV | PLAY | NEXT | | |
|
||||||
|
* `-----------------------------------------/ / \ \-----------------------------------------'
|
||||||
|
* | LGUI | LAlt | LCTR |LOWER | /Enter / \Space \ |RAISE | RCTR | RAlt | RGUI |
|
||||||
|
* | | | | |/ / \ \ | | | | |
|
||||||
|
* `----------------------------------' '------''---------------------------'
|
||||||
|
*/
|
||||||
|
[_ADJUST] = LAYOUT( \
|
||||||
|
XXXXXXX , XXXXXXX, XXXXXXX , XXXXXXX , XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
|
RESET , XXXXXXX,KC_QWERTY,KC_COLEMAK,CG_TOGG,XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
|
XXXXXXX , XXXXXXX,CG_TOGG, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_VOLD, KC_MUTE, KC_VOLU, XXXXXXX, XXXXXXX, \
|
||||||
|
XXXXXXX , XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MPRV, KC_MPLY, KC_MNXT, XXXXXXX, XXXXXXX, \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
||||||
|
),
|
||||||
|
/* MOUSE
|
||||||
|
* ,-----------------------------------------. ,-----------------------------------------.
|
||||||
|
* | | | | | | | | | | | | | |
|
||||||
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
|
* | | | | | | | | | | | | | |
|
||||||
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
|
* | | | | | | |-------. ,-------|MS_BT1|MS_BT2| | | | |
|
||||||
|
* |------+------+------+------+------+------| | | |------+------+------+------+------+------|
|
||||||
|
* | | | | | | |-------| |-------| | | | | | |
|
||||||
|
* `-----------------------------------------/ / \ \-----------------------------------------'
|
||||||
|
* | LGUI | LAlt | LCTR |LOWER | /Enter / \Space \ |RAISE | RCTR | RAlt | RGUI |
|
||||||
|
* | | | | |/ / \ \ | | | | |
|
||||||
|
* `----------------------------------' '------''---------------------------'
|
||||||
|
*/
|
||||||
|
[_MOUSE] = LAYOUT( \
|
||||||
|
XXXXXXX , XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
|
XXXXXXX , XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
|
XXXXXXX , XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MS_BTN1, KC_MS_BTN2, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
|
XXXXXXX , XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
#ifdef OLED_ENABLE
|
||||||
|
|
||||||
|
static void print_status_narrow(void) {
|
||||||
|
// Print current mode
|
||||||
|
oled_write_P(PSTR("\n\n"), false);
|
||||||
|
oled_write_ln_P(PSTR("MODE"), false);
|
||||||
|
oled_write_ln_P(PSTR(""), false);
|
||||||
|
if (keymap_config.swap_lctl_lgui) {
|
||||||
|
oled_write_ln_P(PSTR("MAC"), false);
|
||||||
|
} else {
|
||||||
|
oled_write_ln_P(PSTR("WIN"), false);
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (get_highest_layer(default_layer_state)) {
|
||||||
|
case _QWERTY:
|
||||||
|
oled_write_ln_P(PSTR("Qwrt"), false);
|
||||||
|
break;
|
||||||
|
case _COLEMAK:
|
||||||
|
oled_write_ln_P(PSTR("Clmk"), false);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
oled_write_P(PSTR("Undef"), false);
|
||||||
|
}
|
||||||
|
oled_write_P(PSTR("\n\n"), false);
|
||||||
|
// Print current layer
|
||||||
|
oled_write_ln_P(PSTR("LAYER"), false);
|
||||||
|
switch (get_highest_layer(layer_state)) {
|
||||||
|
case _COLEMAK:
|
||||||
|
case _QWERTY:
|
||||||
|
oled_write_P(PSTR("Base\n"), false);
|
||||||
|
break;
|
||||||
|
case _RAISE:
|
||||||
|
oled_write_P(PSTR("Raise"), false);
|
||||||
|
break;
|
||||||
|
case _LOWER:
|
||||||
|
oled_write_P(PSTR("Lower"), false);
|
||||||
|
break;
|
||||||
|
case _ADJUST:
|
||||||
|
oled_write_P(PSTR("Adj\n"), false);
|
||||||
|
break;
|
||||||
|
case _MOUSE:
|
||||||
|
oled_write_P(PSTR("Mouse\n"), false);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
oled_write_ln_P(PSTR("Undef"), false);
|
||||||
|
}
|
||||||
|
oled_write_P(PSTR("\n\n"), false);
|
||||||
|
led_t led_usb_state = host_keyboard_led_state();
|
||||||
|
oled_write_ln_P(PSTR("CPSLK"), led_usb_state.caps_lock);
|
||||||
|
}
|
||||||
|
|
||||||
|
oled_rotation_t oled_init_user(oled_rotation_t rotation) {
|
||||||
|
if (is_keyboard_master()) {
|
||||||
|
return OLED_ROTATION_270;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!is_keyboard_master()) {
|
||||||
|
return OLED_ROTATION_270;
|
||||||
|
}
|
||||||
|
return rotation;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Animation bit by j-inc https://github.com/qmk/qmk_firmware/tree/master/keyboards/kyria/keymaps/j-inc */
|
||||||
|
// WPM-responsive animation stuff here
|
||||||
|
#define IDLE_FRAMES 5
|
||||||
|
#define IDLE_SPEED 40 // below this wpm value your animation will idle
|
||||||
|
|
||||||
|
// #define PREP_FRAMES 1 // uncomment if >1
|
||||||
|
|
||||||
|
#define TAP_FRAMES 2
|
||||||
|
#define TAP_SPEED 60 // above this wpm value typing animation to triggere
|
||||||
|
|
||||||
|
#define ANIM_FRAME_DURATION 200 // how long each frame lasts in ms
|
||||||
|
// #define SLEEP_TIMER 60000 // should sleep after this period of 0 wpm, needs fixing
|
||||||
|
#define ANIM_SIZE 320 // number of bytes in array, minimize for adequate firmware size, max is 1024
|
||||||
|
|
||||||
|
uint32_t anim_timer = 0;
|
||||||
|
uint32_t anim_sleep = 0;
|
||||||
|
uint8_t current_idle_frame = 0;
|
||||||
|
// uint8_t current_prep_frame = 0; // uncomment if PREP_FRAMES >1
|
||||||
|
uint8_t current_tap_frame = 0;
|
||||||
|
|
||||||
|
// Implementation credit j-inc(/James Incandenza), pixelbenny, and obosob.
|
||||||
|
// Bongo cat images changed and adapted for sofle keyboard oled size.
|
||||||
|
// Original gif can be found here: https://www.pixilart.com/art/bongo-cat-bd2a8e9323aa705
|
||||||
|
static void render_anim(void) {
|
||||||
|
static const char PROGMEM idle[IDLE_FRAMES][ANIM_SIZE] = {
|
||||||
|
{
|
||||||
|
0x00, 0xc0, 0x3e, 0x01, 0x00, 0x00, 0x00, 0xc0, 0xfc, 0x03, 0x00, 0x03, 0x0c, 0x30, 0xc0, 0x00,
|
||||||
|
0xe1, 0x1e, 0x00, 0xc0, 0xbc, 0x83, 0x80, 0x80, 0x80, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x3c, 0x03, 0x00, 0x00, 0x00, 0x80, 0x78, 0x87, 0x00, 0x03, 0x0c, 0x30, 0xc0, 0x00, 0xe0, 0x1f,
|
||||||
|
0x01, 0xc0, 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x31, 0x05, 0x41, 0x12, 0x04,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0xf8, 0x87, 0x00, 0x01, 0x06, 0x18, 0x60, 0x80, 0xc0, 0x3f, 0x03, 0x80,
|
||||||
|
0x78, 0x07, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x03, 0x05,
|
||||||
|
0x00, 0x00, 0xf0, 0xcf, 0x00, 0x01, 0x06, 0x18, 0x60, 0x80, 0x80, 0x79, 0x07, 0x80, 0x78, 0x07,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x38, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0xe0, 0x1e, 0x01, 0x00, 0x03, 0x0c, 0x30, 0xc0, 0x00, 0xf9, 0x07, 0x80, 0x78, 0x07, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0xc0, 0x2c, 0x32, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x07, 0x03, 0x0c, 0x30, 0xc0, 0x00, 0x00, 0xf0, 0x0f, 0x80, 0x78, 0x07, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x18, 0x60, 0x80, 0x00, 0x00, 0xe1, 0x1e, 0x01, 0xf0, 0x8f, 0x80, 0x80, 0x80, 0x00, 0x00, 0x00,
|
||||||
|
0x0e, 0x0e, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x08, 0x08, 0x09, 0x0e, 0x0e, 0x01, 0xf0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x19,
|
||||||
|
0x19, 0x41, 0x0a, 0x22, 0x84, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x60, 0x18,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0xf0, 0x0f, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02,
|
||||||
|
0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x09, 0x70, 0x80,
|
||||||
|
0x00, 0x00, 0xf0, 0x1f, 0x10, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x04, 0x04, 0x02, 0x02,
|
||||||
|
0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x04, 0x02, 0x01,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
static const char PROGMEM tap[TAP_FRAMES][ANIM_SIZE] = {
|
||||||
|
{
|
||||||
|
0x00, 0xc0, 0x3e, 0x01, 0x00, 0x00, 0x00, 0xc0, 0xfc, 0xff, 0xff, 0xff, 0x7c, 0x70, 0x40, 0x40,
|
||||||
|
0x61, 0x5e, 0x80, 0xc0, 0xbc, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x3c, 0x03, 0x00, 0x00, 0x00, 0x80, 0x78, 0x87, 0x00, 0x03, 0x0f, 0x3f, 0xf8, 0xf0, 0xf0, 0x20,
|
||||||
|
0x40, 0x80, 0x80, 0x00, 0x00, 0x01, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0xf8, 0x87, 0x00, 0x01, 0x06, 0x18, 0x60, 0x80, 0xc0, 0x3f, 0x03, 0x80,
|
||||||
|
0x78, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04,
|
||||||
|
0x00, 0x00, 0xf0, 0xcf, 0x00, 0x01, 0x06, 0x18, 0x60, 0x80, 0x80, 0x79, 0x07, 0x80, 0x78, 0x07,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x38, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0xe0, 0x1e, 0x01, 0x00, 0x03, 0x0c, 0x30, 0xc0, 0x00, 0xf9, 0x07, 0x80, 0x78, 0x07, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0xc0, 0x2c, 0x32, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x07, 0x03, 0x0c, 0x30, 0xc0, 0x00, 0x00, 0xf0, 0x0f, 0x80, 0x78, 0x07, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x18, 0x60, 0x80, 0x00, 0x00, 0xe1, 0x1e, 0x01, 0xf0, 0x8f, 0x80, 0x80, 0x80, 0x00, 0x00, 0x00,
|
||||||
|
0x0e, 0x0e, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x08, 0x08, 0x09, 0x0e, 0x0e, 0x01, 0xf0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x19,
|
||||||
|
0x19, 0x41, 0x0a, 0x22, 0x84, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x60, 0x18,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0xf0, 0x0f, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02,
|
||||||
|
0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x09, 0x70, 0x80,
|
||||||
|
0x00, 0x00, 0xf0, 0x1f, 0x10, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x04, 0x04, 0x02, 0x02,
|
||||||
|
0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x04, 0x02, 0x01,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
0x00, 0xc0, 0x3e, 0x01, 0x00, 0x00, 0x00, 0xc0, 0xfc, 0x03, 0x00, 0x03, 0x0c, 0x30, 0xc0, 0x00,
|
||||||
|
0xe1, 0x1e, 0x00, 0xc0, 0xbc, 0x83, 0x80, 0x80, 0x80, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x3c, 0x03, 0x00, 0x00, 0x00, 0x80, 0x78, 0x87, 0x00, 0x03, 0x0c, 0x30, 0xc0, 0x00, 0xe0, 0x1f,
|
||||||
|
0x01, 0xc0, 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x31, 0x05, 0x41, 0x12, 0x04,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0xf8, 0x87, 0x00, 0x01, 0x06, 0x18, 0x60, 0x80, 0xc0, 0x3f, 0x03, 0x80,
|
||||||
|
0x78, 0x07, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x03, 0x05,
|
||||||
|
0x00, 0x00, 0xf0, 0xcf, 0x00, 0x01, 0x06, 0x18, 0x60, 0x80, 0x80, 0x79, 0x07, 0x80, 0x78, 0x07,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x38, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0xe0, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0xf0, 0xc0, 0x00, 0xf9, 0x07, 0x80, 0x78, 0x07, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0xc0, 0x2c, 0x32, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x07, 0x03, 0x0f, 0x3f, 0xff, 0x03, 0x01, 0x03, 0x07, 0x18, 0xf8, 0x07, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x18, 0x60, 0x80, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3c, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x0e, 0x0e, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x08, 0x08, 0x09, 0x0e, 0x0e, 0x01, 0xf3, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x60, 0x18,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x09, 0x70, 0x80,
|
||||||
|
0x00, 0x00, 0xf0, 0x1f, 0x10, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x04, 0x04, 0x02, 0x02,
|
||||||
|
0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x04, 0x02, 0x01
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
//assumes 1 frame prep stage
|
||||||
|
void animation_phase(void) {
|
||||||
|
if(get_current_wpm() <=IDLE_SPEED){
|
||||||
|
oled_write_raw_P(idle[0], ANIM_SIZE);
|
||||||
|
}
|
||||||
|
if(get_current_wpm() >=TAP_SPEED){
|
||||||
|
current_tap_frame = (current_tap_frame + 1) % TAP_FRAMES;
|
||||||
|
oled_write_raw_P(tap[abs((TAP_FRAMES-1)-current_tap_frame)], ANIM_SIZE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(get_current_wpm() != 000) {
|
||||||
|
oled_on(); // not essential but turns on animation OLED with any alpha keypress
|
||||||
|
if(timer_elapsed32(anim_timer) > ANIM_FRAME_DURATION) {
|
||||||
|
anim_timer = timer_read32();
|
||||||
|
animation_phase();
|
||||||
|
}
|
||||||
|
anim_sleep = timer_read32();
|
||||||
|
} else {
|
||||||
|
if(timer_elapsed32(anim_sleep) > OLED_TIMEOUT) {
|
||||||
|
oled_off();
|
||||||
|
} else {
|
||||||
|
if(timer_elapsed32(anim_timer) > ANIM_FRAME_DURATION) {
|
||||||
|
anim_timer = timer_read32();
|
||||||
|
animation_phase();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool oled_task_user(void) {
|
||||||
|
if (is_keyboard_master()) {
|
||||||
|
print_status_narrow();
|
||||||
|
} else {
|
||||||
|
render_anim();
|
||||||
|
oled_set_cursor(1,12);
|
||||||
|
oled_write_P(PSTR("WPM"), false);
|
||||||
|
oled_set_cursor(1,13);
|
||||||
|
oled_write(get_u8_str(get_current_wpm(), '0'), false);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
|
||||||
|
switch (keycode) {
|
||||||
|
case KC_QWERTY:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
set_single_persistent_default_layer(_QWERTY);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
case KC_COLEMAK:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
set_single_persistent_default_layer(_COLEMAK);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
case KC_LOWER:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
layer_on(_LOWER);
|
||||||
|
update_tri_layer(_LOWER, _RAISE, _ADJUST);
|
||||||
|
} else {
|
||||||
|
layer_off(_LOWER);
|
||||||
|
update_tri_layer(_LOWER, _RAISE, _ADJUST);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
case KC_RAISE:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
layer_on(_RAISE);
|
||||||
|
update_tri_layer(_LOWER, _RAISE, _ADJUST);
|
||||||
|
} else {
|
||||||
|
layer_off(_RAISE);
|
||||||
|
update_tri_layer(_LOWER, _RAISE, _ADJUST);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
case KC_ADJUST:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
layer_on(_ADJUST);
|
||||||
|
} else {
|
||||||
|
layer_off(_ADJUST);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
case KC_PRVWD:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
if (keymap_config.swap_lctl_lgui) {
|
||||||
|
register_mods(mod_config(MOD_LALT));
|
||||||
|
register_code(KC_LEFT);
|
||||||
|
} else {
|
||||||
|
register_mods(mod_config(MOD_LCTL));
|
||||||
|
register_code(KC_LEFT);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (keymap_config.swap_lctl_lgui) {
|
||||||
|
unregister_mods(mod_config(MOD_LALT));
|
||||||
|
unregister_code(KC_LEFT);
|
||||||
|
} else {
|
||||||
|
unregister_mods(mod_config(MOD_LCTL));
|
||||||
|
unregister_code(KC_LEFT);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case KC_NXTWD:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
if (keymap_config.swap_lctl_lgui) {
|
||||||
|
register_mods(mod_config(MOD_LALT));
|
||||||
|
register_code(KC_RIGHT);
|
||||||
|
} else {
|
||||||
|
register_mods(mod_config(MOD_LCTL));
|
||||||
|
register_code(KC_RIGHT);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (keymap_config.swap_lctl_lgui) {
|
||||||
|
unregister_mods(mod_config(MOD_LALT));
|
||||||
|
unregister_code(KC_RIGHT);
|
||||||
|
} else {
|
||||||
|
unregister_mods(mod_config(MOD_LCTL));
|
||||||
|
unregister_code(KC_RIGHT);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case KC_LSTRT:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
if (keymap_config.swap_lctl_lgui) {
|
||||||
|
//CMD-arrow on Mac, but we have CTL and GUI swapped
|
||||||
|
register_mods(mod_config(MOD_LCTL));
|
||||||
|
register_code(KC_LEFT);
|
||||||
|
} else {
|
||||||
|
register_code(KC_HOME);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (keymap_config.swap_lctl_lgui) {
|
||||||
|
unregister_mods(mod_config(MOD_LCTL));
|
||||||
|
unregister_code(KC_LEFT);
|
||||||
|
} else {
|
||||||
|
unregister_code(KC_HOME);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case KC_LEND:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
if (keymap_config.swap_lctl_lgui) {
|
||||||
|
//CMD-arrow on Mac, but we have CTL and GUI swapped
|
||||||
|
register_mods(mod_config(MOD_LCTL));
|
||||||
|
register_code(KC_RIGHT);
|
||||||
|
} else {
|
||||||
|
register_code(KC_END);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (keymap_config.swap_lctl_lgui) {
|
||||||
|
unregister_mods(mod_config(MOD_LCTL));
|
||||||
|
unregister_code(KC_RIGHT);
|
||||||
|
} else {
|
||||||
|
unregister_code(KC_END);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case KC_DLINE:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
register_mods(mod_config(MOD_LCTL));
|
||||||
|
register_code(KC_BSPC);
|
||||||
|
} else {
|
||||||
|
unregister_mods(mod_config(MOD_LCTL));
|
||||||
|
unregister_code(KC_BSPC);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case KC_COPY:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
register_mods(mod_config(MOD_LCTL));
|
||||||
|
register_code(KC_C);
|
||||||
|
} else {
|
||||||
|
unregister_mods(mod_config(MOD_LCTL));
|
||||||
|
unregister_code(KC_C);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
case KC_PASTE:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
register_mods(mod_config(MOD_LCTL));
|
||||||
|
register_code(KC_V);
|
||||||
|
} else {
|
||||||
|
unregister_mods(mod_config(MOD_LCTL));
|
||||||
|
unregister_code(KC_V);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
case KC_CUT:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
register_mods(mod_config(MOD_LCTL));
|
||||||
|
register_code(KC_X);
|
||||||
|
} else {
|
||||||
|
unregister_mods(mod_config(MOD_LCTL));
|
||||||
|
unregister_code(KC_X);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
case KC_UNDO:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
register_mods(mod_config(MOD_LCTL));
|
||||||
|
register_code(KC_Z);
|
||||||
|
} else {
|
||||||
|
unregister_mods(mod_config(MOD_LCTL));
|
||||||
|
unregister_code(KC_Z);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
case KC_MOUSE:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
layer_on(_MOUSE);
|
||||||
|
} else {
|
||||||
|
layer_off(_MOUSE);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef ENCODER_ENABLE
|
||||||
|
|
||||||
|
bool encoder_update_user(uint8_t index, bool clockwise) {
|
||||||
|
switch (get_highest_layer(layer_state)) {
|
||||||
|
case _COLEMAK:
|
||||||
|
case _QWERTY:
|
||||||
|
if (index == 0) {
|
||||||
|
if (clockwise) {
|
||||||
|
tap_code(KC_VOLD);
|
||||||
|
} else {
|
||||||
|
tap_code(KC_VOLU);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case _RAISE:
|
||||||
|
if (index == 0) {
|
||||||
|
if (clockwise) {
|
||||||
|
tap_code(KC_MPRV);
|
||||||
|
} else {
|
||||||
|
tap_code(KC_MNXT);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static uint32_t last_mouse_activity = 0;
|
||||||
|
static report_mouse_t last_mouse_report = {0};
|
||||||
|
static bool is_scrolling = false;
|
||||||
|
|
||||||
|
report_mouse_t smooth_mouse_movement(report_mouse_t mouse_report) {
|
||||||
|
// Linear interpolation and ease-in-out
|
||||||
|
static fract8 fract = 0.5;
|
||||||
|
int8_t x = 0;
|
||||||
|
int8_t y = 0;
|
||||||
|
int8_t h = 0;
|
||||||
|
int8_t v = 0;
|
||||||
|
|
||||||
|
if (!is_scrolling) {
|
||||||
|
x = ease8InOutApprox(lerp8by8(last_mouse_report.x, mouse_report.x, fract));
|
||||||
|
y = ease8InOutApprox(lerp8by8(last_mouse_report.y, mouse_report.y, fract));
|
||||||
|
} else {
|
||||||
|
h = ease8InOutApprox(lerp8by8(last_mouse_report.x, mouse_report.x, fract));
|
||||||
|
v = ease8InOutApprox(lerp8by8(last_mouse_report.y, mouse_report.y, fract));
|
||||||
|
}
|
||||||
|
|
||||||
|
// update the new smoothed report
|
||||||
|
mouse_report.x = x;
|
||||||
|
mouse_report.y = y;
|
||||||
|
mouse_report.h = h;
|
||||||
|
mouse_report.v = v;
|
||||||
|
|
||||||
|
return mouse_report;
|
||||||
|
}
|
||||||
|
|
||||||
|
report_mouse_t pointing_device_task_user(report_mouse_t mouse_report) {
|
||||||
|
|
||||||
|
if (has_mouse_report_changed(&last_mouse_report, &mouse_report)) {
|
||||||
|
last_mouse_activity = timer_read32();
|
||||||
|
memcpy(&last_mouse_report, &mouse_report, sizeof(mouse_report));
|
||||||
|
}
|
||||||
|
|
||||||
|
return smooth_mouse_movement(mouse_report);
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
For more information on integrating the Pimoroni Trackball, please see: https://github.com/foureight84/sofle-keyboard-pimoroni
|
|
@ -0,0 +1,24 @@
|
||||||
|
OLED_ENABLE = yes
|
||||||
|
ENCODER_ENABLE = yes
|
||||||
|
EXTRAKEY_ENABLE = yes
|
||||||
|
MOUSEKEY_ENABLE = yes
|
||||||
|
WPM_ENABLE = yes
|
||||||
|
|
||||||
|
#Debug options
|
||||||
|
VERBOSE = no
|
||||||
|
CONSOLE_ENABLE = no
|
||||||
|
COMMAND_ENABLE = no
|
||||||
|
|
||||||
|
LTO_ENABLE = yes
|
||||||
|
|
||||||
|
SPLIT_KEYBOARD = yes
|
||||||
|
|
||||||
|
VIA_ENABLE = no
|
||||||
|
|
||||||
|
POINTING_DEVICE_ENABLE = yes
|
||||||
|
POINTING_DEVICE_DRIVER = pimoroni_trackball
|
||||||
|
|
||||||
|
SPACE_CADET_ENABLE = no
|
||||||
|
GRAVE_ESC_ENABLE = no
|
||||||
|
MAGIC_ENABLE = no
|
||||||
|
MUSIC_ENABLE = no
|
Loading…
Reference in New Issue