]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/rgbkb/sol/config.h
1afd973e903be026b49fb03ed94b984151acd22c
[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 NUMBER_OF_ENCODERS 1
40 #define ENCODERS_PAD_A { D2 }
41 #define ENCODERS_PAD_B { D6 }
42
43 /* Set 0 if debouncing isn't needed */
44 #define DEBOUNCE 5
45
46 /* ws2812 RGB LED */
47 #define RGB_DI_PIN B3
48
49 #ifdef IOS_DEVICE_ENABLE
50   #define RGBLIGHT_LIMIT_VAL 40
51 #elif RGBLIGHT_FULL_POWER
52   #define RGBLIGHT_LIMIT_VAL 255
53 #else
54   #define RGBLIGHT_LIMIT_VAL 120
55 #endif
56 #define RGB_MATRIX_MAXIMUM_BRIGHTNESS RGBLIGHT_LIMIT_VAL
57
58 #define LED_HITS_TO_REMEMBER 5
59
60 #define RGBLIGHT_ANIMATIONS
61
62 #if defined(RGBLIGHT_ENABLE) && !defined(IOS_DEVICE_ENABLE)
63 // USB_MAX_POWER_CONSUMPTION value for Helix keyboard
64 //  120  RGBoff, OLEDoff
65 //  120  OLED
66 //  330  RGB 6
67 //  300  RGB 32
68 //  310  OLED & RGB 32
69   #define USB_MAX_POWER_CONSUMPTION 500
70 #else
71   // fix iPhone and iPad power adapter issue
72   // iOS device need lessthan 100
73   #define USB_MAX_POWER_CONSUMPTION 100
74 #endif
75
76 /*
77  * Feature disable options
78  *  These options are also useful to firmware size reduction.
79  */
80
81 /* disable debug print */
82 // #define NO_DEBUG
83
84 /* disable print */
85 // #define NO_PRINT
86
87 /* disable action features */
88 //#define NO_ACTION_LAYER
89 //#define NO_ACTION_TAPPING
90 //#define NO_ACTION_ONESHOT
91 //#define NO_ACTION_MACRO
92 //#define NO_ACTION_FUNCTION