forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Gotten into massive problems in rebasing onto master for my own feature branch with my keymaps. Not sure why, but way too complicated to fix (everytime). Therefore decided to forsake the old branch feature/keymaps_paullemmens. All previous dev history to be found there, but not to be integrated anymore.
- Loading branch information
1 parent
86b1231
commit d24ba8d
Showing
13 changed files
with
1,314 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
Copyright 2018 Mattia Dal Ben <matthewdibi@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 | ||
|
||
// This helps reduce firmware size due to various changes in qmk toolchain that | ||
// introduce bloat. | ||
// https://discord.com/channels/440868230475677696/473506116718952450/838843625084944414 | ||
#define LAYER_STATE_8BIT | ||
|
||
/* Use I2C or Serial, not both */ | ||
#define USE_SERIAL | ||
// #define USE_I2C | ||
|
||
/* Select hand configuration */ | ||
#define MASTER_LEFT | ||
// #define MASTER_RIGHT | ||
// #define EE_HANDS | ||
|
||
#ifdef RGBLIGHT_ENABLE | ||
#define RGBLIGHT_ANIMATIONS | ||
/* #define RGBLIGHT_EFFECT_STATIC_LIGHT */ | ||
/* #define RGBLIGHT_EFFECT_BREATHING */ | ||
/* #define RGBLIGHT_EFFECT_RAINBOW_MOOD */ | ||
/* #define RGBLIGHT_EFFECT_RAINBOW_SWIRL */ | ||
#undef RGBLED_NUM | ||
#define RGBLED_NUM 14 | ||
#define RGBLIGHT_HUE_STEP 8 | ||
#define RGBLIGHT_SAT_STEP 8 | ||
#define RGBLIGHT_VAL_STEP 8 | ||
#define RGBLIGHT_SLEEP | ||
#define RGBLIGHT_SPLIT | ||
#endif | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
CONSOLE_ENABLE = no | ||
|
||
OLED_DRIVER_ENABLE = no # Enables the use of OLED displays | ||
ENCODER_ENABLE = no # Enables the use of one or more encoders | ||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
LEADER_ENABLE = no # Enable the Leader Key feature | ||
MOUSEKEY_ENABLE = no | ||
TAP_DANCE_ENABLE = no | ||
UNICODE_ENABLE = no | ||
WPM_ENABLE = no | ||
VELOCIKEY_ENABLE = no | ||
KEY_LOCK_ENABLE = yes | ||
|
||
# Reduces firmware bloat due to changes in qmk toolchain. | ||
# https://discord.com/channels/440868230475677696/473506116718952450/838845851962703893 | ||
GRAVE_ESC_ENABLE = no | ||
SPACE_CADET_ENABLE = no | ||
|
||
LTO_ENABLE = yes | ||
|
||
# Bootloader selection | ||
# Teensy halfkay | ||
# Pro Micro caterina | ||
# Atmel DFU atmel-dfu | ||
# LUFA DFU lufa-dfu | ||
# QMK DFU qmk-dfu | ||
# ATmega32A bootloadHID | ||
# ATmega328P USBasp | ||
BOOTLOADER = caterina |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* Copyright 2019 Thomas Baart <thomas@splitkb.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 | ||
|
||
#ifdef WPM_ENABLE | ||
#define WPM_GRAPH | ||
#define SPLIT_WPM_ENABLE | ||
#endif | ||
// This helps reduce firmware size due to various changes in qmk toolchain that | ||
// introduce bloat. | ||
// https://discord.com/channels/440868230475677696/473506116718952450/838843625084944414 | ||
#define LAYER_STATE_8BIT | ||
|
||
#ifdef OLED_ENABLE | ||
#define OLED_DISPLAY_128X64 | ||
#endif | ||
|
||
#ifdef RGBLIGHT_ENABLE | ||
/* #define RGBLIGHT_ANIMATIONS */ | ||
#define RGBLIGHT_EFFECT_STATIC_LIGHT | ||
/* #define RGBLIGHT_EFFECT_BREATHING */ | ||
#define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
/* #define RGBLIGHT_EFFECT_STATIC_GRADIENT */ | ||
#define RGBLIGHT_HUE_STEP 8 | ||
#define RGBLIGHT_SAT_STEP 8 | ||
#define RGBLIGHT_VAL_STEP 8 | ||
#define RGBLIGHT_LIMIT_VAL 190 | ||
#define RGBLIGHT_SLEEP | ||
#define RGBLIGHT_SPLIT | ||
#define RGBLIGHT_LED_MAP {0,1,2,9,8,7,4,3,5,6,19,18,17,10,11,12,15,16,14,13} // Orients Kyria LEDs to a circle around both halves. | ||
//#define RBGLIGHT_LED_MAP {9,8,6,7,5,3,2,4,1,0,10,12,13,11,14,16,17,15,18,19} // Orients Kyria LEDs for a left half-right half columnar progression. | ||
#endif | ||
|
||
// Encoder settings. | ||
// Allows media codes to properly register in macros and rotary encoder code | ||
#define TAP_CODE_DELAY 10 | ||
#define ENCODER_DIRECTION_FLIP | ||
// EC11K encoders have a different resolution than other EC11 encoders. | ||
// When using the default resolution of 4, if you notice your encoder skipping | ||
// every other tick, lower the resolution to 2. | ||
#define ENCODER_RESOLUTION 2 |
Oops, something went wrong.