diff options
Diffstat (limited to 'keyboards/eek/config.h')
| -rw-r--r-- | keyboards/eek/config.h | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/keyboards/eek/config.h b/keyboards/eek/config.h new file mode 100644 index 000000000..d8a949269 --- /dev/null +++ b/keyboards/eek/config.h | |||
| @@ -0,0 +1,134 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2020 klackygears | ||
| 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 | #pragma once | ||
| 19 | |||
| 20 | #include "config_common.h" | ||
| 21 | |||
| 22 | /* USB Device descriptor parameter */ | ||
| 23 | #define VENDOR_ID 0x4A53 | ||
| 24 | #define PRODUCT_ID 0x0002 | ||
| 25 | #define DEVICE_VER 0x0004 | ||
| 26 | #define MANUFACTURER klackygears | ||
| 27 | #define PRODUCT eek! | ||
| 28 | |||
| 29 | /* key matrix size */ | ||
| 30 | #define MATRIX_ROWS 4 | ||
| 31 | #define MATRIX_COLS 10 | ||
| 32 | |||
| 33 | #define MATRIX_ROW_PINS { D7, E6, B4, B5 } | ||
| 34 | #define MATRIX_COL_PINS { D4, C6, B6, B2, B3, B1, F7, F6, F5, F4 } | ||
| 35 | |||
| 36 | #define UNUSED_PINS { D2, D1, D0 } | ||
| 37 | |||
| 38 | #define DIODE_DIRECTION COL2ROW | ||
| 39 | |||
| 40 | |||
| 41 | #define RGB_DI_PIN D3 | ||
| 42 | #ifdef RGB_DI_PIN | ||
| 43 | #define RGBLED_NUM 36 | ||
| 44 | #define RGBLIGHT_HUE_STEP 4 | ||
| 45 | #define RGBLIGHT_SAT_STEP 8 | ||
| 46 | #define RGBLIGHT_VAL_STEP 8 | ||
| 47 | #define RGBLIGHT_LIMIT_VAL 200 /* The maximum brightness level */ | ||
| 48 | #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
| 49 | /*== all animations enable ==*/ | ||
| 50 | #define RGBLIGHT_ANIMATIONS | ||
| 51 | // /*== or choose animations ==*/ | ||
| 52 | // #define RGBLIGHT_EFFECT_BREATHING | ||
| 53 | // #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
| 54 | // #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
| 55 | // #define RGBLIGHT_EFFECT_SNAKE | ||
| 56 | // #define RGBLIGHT_EFFECT_KNIGHT | ||
| 57 | // #define RGBLIGHT_EFFECT_CHRISTMAS | ||
| 58 | // #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
| 59 | // #define RGBLIGHT_EFFECT_RGB_TEST | ||
| 60 | // #define RGBLIGHT_EFFECT_ALTERNATING | ||
| 61 | // /*== customize breathing effect ==*/ | ||
| 62 | // /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/ | ||
| 63 | // #define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64 | ||
| 64 | // /*==== use exp() and sin() ====*/ | ||
| 65 | // #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 | ||
| 66 | // #define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 | ||
| 67 | #endif | ||
| 68 | |||
| 69 | #ifdef RGB_MATRIX_ENABLE | ||
| 70 | #define DRIVER_LED_TOTAL 36 | ||
| 71 | #define RGB_MATRIX_LED_FLUSH_LIMIT 16 | ||
| 72 | #define RGB_MATRIX_STARTUP_VAL 150 | ||
| 73 | #define RGB_MATRIX_MAXIMUM_BRIGHTNESS 200 | ||
| 74 | #endif | ||
| 75 | |||
| 76 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 77 | #define DEBOUNCE 5 | ||
| 78 | |||
| 79 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 80 | //#define MATRIX_HAS_GHOST | ||
| 81 | |||
| 82 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 83 | #define LOCKING_SUPPORT_ENABLE | ||
| 84 | /* Locking resynchronize hack */ | ||
| 85 | #define LOCKING_RESYNC_ENABLE | ||
| 86 | |||
| 87 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
| 88 | * This is userful for the Windows task manager shortcut (ctrl+shift+esc). | ||
| 89 | */ | ||
| 90 | // #define GRAVE_ESC_CTRL_OVERRIDE | ||
| 91 | |||
| 92 | /* | ||
| 93 | * Force NKRO | ||
| 94 | * | ||
| 95 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 96 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 97 | * makefile for this to work.) | ||
| 98 | * | ||
| 99 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 100 | * until the next keyboard reset. | ||
| 101 | * | ||
| 102 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 103 | * fully operational during normal computer usage. | ||
| 104 | * | ||
| 105 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 106 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 107 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 108 | * power-up. | ||
| 109 | * | ||
| 110 | */ | ||
| 111 | //#define FORCE_NKRO | ||
| 112 | |||
| 113 | /* | ||
| 114 | * Feature disable options | ||
| 115 | * These options are also useful to firmware size reduction. | ||
| 116 | */ | ||
| 117 | |||
| 118 | /* disable debug print */ | ||
| 119 | //#define NO_DEBUG | ||
| 120 | |||
| 121 | /* disable print */ | ||
| 122 | //#define NO_PRINT | ||
| 123 | |||
| 124 | /* disable action features */ | ||
| 125 | //#define NO_ACTION_LAYER | ||
| 126 | //#define NO_ACTION_TAPPING | ||
| 127 | //#define NO_ACTION_ONESHOT | ||
| 128 | //#define NO_ACTION_MACRO | ||
| 129 | //#define NO_ACTION_FUNCTION | ||
| 130 | |||
| 131 | |||
| 132 | /* Bootmagic Lite key configuration */ | ||
| 133 | // #define BOOTMAGIC_LITE_ROW 0 | ||
| 134 | // #define BOOTMAGIC_LITE_COLUMN 0 | ||
