Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

corrected default config for new version of QMK #12

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions klor/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once
#include "config_common.h"


// ┌─────────────────────────────────────────────────┐
// │ k e y m a t r i x │
Expand Down Expand Up @@ -68,7 +66,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
// │ r g b l e d s │
// └─────────────────────────────────────────────────┘

#define RGB_DI_PIN D3
#define WS218_DI_PIN D3
#define RGBLED_NUM 42
#define RGBLED_SPLIT { 21, 21 }
#define RGB_MATRIX_LED_COUNT RGBLED_NUM
Expand Down
3 changes: 0 additions & 3 deletions klor/keymaps/default/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ for more options.
//#define TAPPING_TERM 170
#define TAPPING_TERM 170

// Prevent normal rollover on alphas from accidentally triggering mods.
#define IGNORE_MOD_TAP_INTERRUPT

// Enable rapid switch from tap to hold, disables double tap hold auto-repeat.
#define TAPPING_FORCE_HOLD

Expand Down
2 changes: 1 addition & 1 deletion klor/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

[_ADJUST] = LAYOUT_polydactyl(
//╷ ╷ ╷ ╷ ╷ ╷ ╷ ╷╷ ╷ ╷ ╷ ╷ ╷ ╷ ╷
AU_TOG, HPT_TOG, RGB_HUI, RGB_MOD, XXXXXXX, XXXXXXX, KC_F7, KC_F8, KC_F9, KC_F14,
AU_TOGG, HF_TOGG, RGB_HUI, RGB_MOD, XXXXXXX, XXXXXXX, KC_F7, KC_F8, KC_F9, KC_F14,
QK_BOOT, DB_TOGG, QWERTY, RGB_SAI, XXXXXXX, XXXXXXX, XXXXXXX, KC_F4, KC_F5, KC_F6, KC_F12, KC_F13,
MAKE_H, OS_SWAP, COLEMAK, RGB_VAI, XXXXXXX, XXXXXXX, KC_MUTE, KC_MPLY, XXXXXXX, KC_F1, KC_F2, KC_F3, KC_F10, KC_F11,
_______, _______, _______, _______, _______, _______, _______, _______
Expand Down
2 changes: 1 addition & 1 deletion klor/keymaps/default/rules.mk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
OLED_ENABLE = yes
OLED_DRIVER = SSD1306
OLED_DRIVER = ssd1306
ENCODER_ENABLE = yes
EXTRAKEY_ENABLE = yes
AUDIO_ENABLE = no
Expand Down
6 changes: 3 additions & 3 deletions klor/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ SPLIT_KEYBOARD = yes
SWAP_HANDS_ENABLE = yes

OLED_ENABLE = yes
OLED_DRIVER = SSD1306
OLED_DRIVER = ssd1306
ENCODER_ENABLE = yes

#HAPTIC FEEDBACK
HAPTIC_DRIVER = DRV2605L
HAPTIC_DRIVER = drv2605L

#PER KEY RGB
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
RGB_MATRIX_ENABLE = no # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE)
RGB_MATRIX_DRIVER = WS2812 # RGB matrix driver support
RGB_MATRIX_DRIVER = ws2812 # RGB matrix driver support
RGB_MATRIX_SUPPORTED = yes

#SPACE SAVING
Expand Down