-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h
67 lines (57 loc) · 2.13 KB
/
config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* Copyright 2021 Bastian Beuttel <[email protected]>
*
* 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
// Allows to use either side as the master. Look at the documentation for info:
// https://docs.qmk.fm/#/config_options?id=setting-handedness
#define EE_HANDS
#ifdef OLED_DRIVER_ENABLE
# define OLED_DISPLAY_128X64
#endif
#ifdef RGBLIGHT_ENABLE
// # define RGBLIGHT_ANIMATIONS
// # define RGBLIGHT_EFFECT_BREATHING
// # define RGBLIGHT_EFFECT_KNIGHT
// # define RGBLIGHT_EFFECT_SNAKE
# define RGBLIGHT_HUE_STEP 8
# define RGBLIGHT_SAT_STEP 8
# define RGBLIGHT_VAL_STEP 8
# define RGBLIGHT_LIMIT_VAL 110
# define RGBLIGHT_LAYERS_RETAIN_VAL
# define RGBLIGHT_SLEEP
# define RGBLIGHT_SPLIT
# define RGBLIGHT_LAYERS
// # define RGBLIGHT_LAYER_BLINK
#endif
// 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
// fix encoder direction
#define ENCODER_DIRECTION_FLIP
// The Leader key allows to flexibly assign macros to key sequences.
#define LEADER_PER_KEY_TIMING
#define LEADER_TIMEOUT 350
// default is 200
#define TAPPING_TERM 175
// Allows media codes to properly register in macros and rotary encoder code
#define TAP_CODE_DELAY 10
// number of combos used and combo timeout
#define COMBO_TERM 40
// one shot modifiers
// tap 2 times to hold
// released after 3 seconds
#define ONESHOT_TAP_TOGGLE 2
#define ONESHOT_TIMEOUT 3000