]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/lets_split/rev2/config.h
Merge https://github.com/climbalima/qmk_firmware
[qmk_firmware.git] / keyboards / lets_split / rev2 / config.h
1 /*
2 Copyright 2012 Jun Wako <wakojun@gmail.com>
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #ifndef CONFIG_H
19 #define CONFIG_H
20
21 #include "config_common.h"
22
23 /* USB Device descriptor parameter */
24 #define VENDOR_ID       0xFEED
25 #define PRODUCT_ID      0x3060
26 #define DEVICE_VER      0x0001
27 #define MANUFACTURER    Wootpatoot
28 #define PRODUCT         Lets Split v2
29 #define DESCRIPTION     A split keyboard for the cheap makers
30
31 /* key matrix size */
32 // Rows are doubled-up
33 #define MATRIX_ROWS 8
34 #define MATRIX_COLS 6
35
36 // wiring of each half
37 #define MATRIX_ROW_PINS { D7, E6, B4, B5 }
38 #define MATRIX_COL_PINS { F6, F7, B1, B3, B2, B6 }
39
40 #define CATERINA_BOOTLOADER
41
42 // #define USE_I2C
43
44 <<<<<<< HEAD
45 // Use serial if not using I2C
46 #ifndef USE_I2C
47 #  define USE_SERIAL
48 #endif
49
50 =======
51 >>>>>>> bce6e52391da7c5f620c96a91857940f0dee19df
52 // #define EE_HANDS
53
54 #define I2C_MASTER_LEFT
55 // #define I2C_MASTER_RIGHT
56
57 /* COL2ROW or ROW2COL */
58 #define DIODE_DIRECTION COL2ROW
59
60 /* define if matrix has ghost */
61 //#define MATRIX_HAS_GHOST
62
63 /* number of backlight levels */
64 // #define BACKLIGHT_LEVELS 3
65
66 /* Set 0 if debouncing isn't needed */
67 #define DEBOUNCING_DELAY 5
68
69 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
70 #define LOCKING_SUPPORT_ENABLE
71 /* Locking resynchronize hack */
72 #define LOCKING_RESYNC_ENABLE
73
74 /* key combination for command */
75 #define IS_COMMAND() ( \
76     keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
77 )
78
79 /* ws2812 RGB LED */
80 <<<<<<< HEAD
81 #define RGB_DI_PIN D3
82 #define RGBLIGHT_TIMER
83 #define RGBLED_NUM 12    // Number of LEDs
84 =======
85 #define ws2812_PORTREG  PORTD
86 #define ws2812_DDRREG   DDRD
87 #define ws2812_pin PD1
88 #define RGBLED_NUM 28     // Number of LEDs
89 >>>>>>> bce6e52391da7c5f620c96a91857940f0dee19df
90 #define RGBLIGHT_HUE_STEP 10
91 #define RGBLIGHT_SAT_STEP 17
92 #define RGBLIGHT_VAL_STEP 17
93
94 /*
95  * Feature disable options
96  *  These options are also useful to firmware size reduction.
97  */
98
99 /* disable debug print */
100 // #define NO_DEBUG
101
102 /* disable print */
103 // #define NO_PRINT
104
105 /* disable action features */
106 //#define NO_ACTION_LAYER
107 //#define NO_ACTION_TAPPING
108 //#define NO_ACTION_ONESHOT
109 //#define NO_ACTION_MACRO
110 //#define NO_ACTION_FUNCTION
111
112 <<<<<<< HEAD
113 #endif
114 =======
115 #endif
116 >>>>>>> bce6e52391da7c5f620c96a91857940f0dee19df