]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/rgbkb/sol/config.h
23f4503bfd958e1913e0f275c3e1e35127c76d9d
[qmk_firmware.git] / keyboards / rgbkb / sol / config.h
1 /*
2 Copyright 2012 Jun Wako <wakojun@gmail.com>
3 Copyright 2015 Jack Humbert
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 #pragma once
20
21 #include "config_common.h"
22
23 #define TAPPING_TERM 150
24
25 /* Select hand configuration */
26 #define SOFT_SERIAL_PIN D3
27 #define EE_HANDS
28
29 /* key matrix size */
30 // Rows are doubled-up
31 #define MATRIX_ROWS 12
32 #define MATRIX_ROW_PINS { C6, B6, B5, B4, D7, E6}
33
34 // wiring of each half
35 #define MATRIX_COLS 7
36 #define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, C7 }
37
38 // Encoder support
39 #define ENCODERS_PAD_A { D2 }
40 #define ENCODERS_PAD_B { D6 }
41
42 /* Set 0 if debouncing isn't needed */
43 #define DEBOUNCE 5
44
45 /* ws2812 RGB LED */
46 #define RGB_DI_PIN B3
47
48 #ifdef IOS_DEVICE_ENABLE
49   #define RGBLIGHT_LIMIT_VAL 40
50 #elif RGBLIGHT_FULL_POWER
51   #define RGBLIGHT_LIMIT_VAL 255
52 #else
53   #define RGBLIGHT_LIMIT_VAL 120
54 #endif
55 #define RGB_MATRIX_MAXIMUM_BRIGHTNESS RGBLIGHT_LIMIT_VAL
56
57 #define LED_HITS_TO_REMEMBER 5
58
59 #define RGBLIGHT_ANIMATIONS
60
61 #if defined(RGBLIGHT_ENABLE) && !defined(IOS_DEVICE_ENABLE)
62 // USB_MAX_POWER_CONSUMPTION value for Helix keyboard
63 //  120  RGBoff, OLEDoff
64 //  120  OLED
65 //  330  RGB 6
66 //  300  RGB 32
67 //  310  OLED & RGB 32
68   #define USB_MAX_POWER_CONSUMPTION 500
69 #else
70   // fix iPhone and iPad power adapter issue
71   // iOS device need lessthan 100
72   #define USB_MAX_POWER_CONSUMPTION 100
73 #endif
74
75 /*
76  * Feature disable options
77  *  These options are also useful to firmware size reduction.
78  */
79
80 /* disable debug print */
81 // #define NO_DEBUG
82
83 /* disable print */
84 // #define NO_PRINT
85
86 /* disable action features */
87 //#define NO_ACTION_LAYER
88 //#define NO_ACTION_TAPPING
89 //#define NO_ACTION_ONESHOT
90 //#define NO_ACTION_MACRO
91 //#define NO_ACTION_FUNCTION