diff options
Diffstat (limited to 'keyboards/naked60/rev1/config.h')
| -rw-r--r-- | keyboards/naked60/rev1/config.h | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/keyboards/naked60/rev1/config.h b/keyboards/naked60/rev1/config.h new file mode 100644 index 000000000..1724ef060 --- /dev/null +++ b/keyboards/naked60/rev1/config.h | |||
| @@ -0,0 +1,119 @@ | |||
| 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 | /* USB Device descriptor parameter */ | ||
| 22 | #define VENDOR_ID 0xFEED | ||
| 23 | #define PRODUCT_ID 0x3060 | ||
| 24 | #define DEVICE_VER 0x0002 | ||
| 25 | #define MANUFACTURER Salicylic_Acid | ||
| 26 | #define PRODUCT naked60 | ||
| 27 | #define DESCRIPTION Ortholinear 60 Keys Keyboard | ||
| 28 | |||
| 29 | /* Use I2C or Serial */ | ||
| 30 | //#define USE_I2C | ||
| 31 | #define USE_SERIAL | ||
| 32 | //#define USE_MATRIX_I2C | ||
| 33 | |||
| 34 | /* Select hand configuration */ | ||
| 35 | #define MASTER_LEFT | ||
| 36 | // #define MASTER_RIGHT | ||
| 37 | // #define EE_HANDS | ||
| 38 | |||
| 39 | // OLED support | ||
| 40 | // see ./rules.mk: OLED_ENABLE=yes or no | ||
| 41 | #ifdef OLED_ENABLE | ||
| 42 | #define SSD1306OLED | ||
| 43 | #endif | ||
| 44 | |||
| 45 | /* key matrix size */ | ||
| 46 | #define MATRIX_ROWS 10 | ||
| 47 | #define MATRIX_COLS 14 | ||
| 48 | |||
| 49 | // Rows are doubled-up | ||
| 50 | #define MATRIX_ROW_PINS { B6, D1, D0, D4, C6 } | ||
| 51 | |||
| 52 | // wiring of each half | ||
| 53 | #define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2, D7, E6, B4, B5, D3 } | ||
| 54 | // #define MATRIX_COL_PINS { D3, B5, B4, E6, D7, B2, B3, B1, F7, F6, F5, F4 } //uncomment this line and comment line above if you need to reverse left-to-right key order | ||
| 55 | |||
| 56 | /* define if matrix has ghost */ | ||
| 57 | //#define MATRIX_HAS_GHOST | ||
| 58 | |||
| 59 | /* number of backlight levels */ | ||
| 60 | // #define BACKLIGHT_LEVELS 3 | ||
| 61 | |||
| 62 | /* Set 0 if debouncing isn't needed */ | ||
| 63 | #define DEBOUNCE 5 | ||
| 64 | |||
| 65 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 66 | //#define LOCKING_SUPPORT_ENABLE | ||
| 67 | /* Locking resynchronize hack */ | ||
| 68 | //#define LOCKING_RESYNC_ENABLE | ||
| 69 | |||
| 70 | /* ws2812 RGB LED */ | ||
| 71 | #define RGB_DI_PIN D3 | ||
| 72 | #define RGBLIGHT_TIMER | ||
| 73 | |||
| 74 | // naked60 keyboard RGB LED support | ||
| 75 | //#define RGBLIGHT_ANIMATIONS : see ./rules.mk: LED_ANIMATIONS = yes or no | ||
| 76 | // see ./rules.mk: LED_BACK_ENABLE or LED_UNDERGLOW_ENABLE set yes | ||
| 77 | //#define RGBLED_NUM 21 | ||
| 78 | |||
| 79 | #ifndef IOS_DEVICE_ENABLE | ||
| 80 | #define RGBLIGHT_LIMIT_VAL 180 | ||
| 81 | #define RGBLIGHT_VAL_STEP 17 | ||
| 82 | #else | ||
| 83 | #define RGBLIGHT_LIMIT_VAL 50 | ||
| 84 | #define RGBLIGHT_VAL_STEP 4 | ||
| 85 | #endif | ||
| 86 | #define RGBLIGHT_HUE_STEP 10 | ||
| 87 | #define RGBLIGHT_SAT_STEP 17 | ||
| 88 | |||
| 89 | #if defined(RGBLIGHT_ENABLE) && !defined(IOS_DEVICE_ENABLE) | ||
| 90 | // USB_MAX_POWER_CONSUMPTION value for naked60 keyboard | ||
| 91 | // 120 RGBoff, OLEDoff | ||
| 92 | // 120 OLED | ||
| 93 | // 330 RGB 6 | ||
| 94 | // 300 RGB 32 | ||
| 95 | // 310 OLED & RGB 32 | ||
| 96 | #define USB_MAX_POWER_CONSUMPTION 400 | ||
| 97 | #else | ||
| 98 | // fix iPhone and iPad power adapter issue | ||
| 99 | // iOS device need lessthan 100 | ||
| 100 | #define USB_MAX_POWER_CONSUMPTION 100 | ||
| 101 | #endif | ||
| 102 | |||
| 103 | /* | ||
| 104 | * Feature disable options | ||
| 105 | * These options are also useful to firmware size reduction. | ||
| 106 | */ | ||
| 107 | |||
| 108 | /* disable debug print */ | ||
| 109 | // #define NO_DEBUG | ||
| 110 | |||
| 111 | /* disable print */ | ||
| 112 | // #define NO_PRINT | ||
| 113 | |||
| 114 | /* disable action features */ | ||
| 115 | //#define NO_ACTION_LAYER | ||
| 116 | //#define NO_ACTION_TAPPING | ||
| 117 | //#define NO_ACTION_ONESHOT | ||
| 118 | //#define NO_ACTION_MACRO | ||
| 119 | //#define NO_ACTION_FUNCTION | ||
