diff options
Diffstat (limited to 'keyboards/primekb/meridian/ws2812/config.h')
| -rw-r--r-- | keyboards/primekb/meridian/ws2812/config.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/keyboards/primekb/meridian/ws2812/config.h b/keyboards/primekb/meridian/ws2812/config.h new file mode 100644 index 000000000..082392c6b --- /dev/null +++ b/keyboards/primekb/meridian/ws2812/config.h | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2020 Holten Campbell | ||
| 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 | /* USB Device descriptor parameter */ | ||
| 21 | #define VENDOR_ID 0x5052 | ||
| 22 | #define PRODUCT_ID 0x004D | ||
| 23 | #define DEVICE_VER 0x0001 | ||
| 24 | #define MANUFACTURER Prime Keyboards | ||
| 25 | #define PRODUCT Meridian | ||
| 26 | |||
| 27 | /* key matrix size */ | ||
| 28 | #define MATRIX_ROWS 5 | ||
| 29 | #define MATRIX_COLS 14 | ||
| 30 | |||
| 31 | #define MATRIX_COL_PINS { B11, B10, B2, B1, B0, A7, B9, B8, B7, B6, B5, B4, B3, A15 } | ||
| 32 | #define MATRIX_ROW_PINS { A6, A5, A4, A3, A2 } | ||
| 33 | #define DIODE_DIRECTION COL2ROW | ||
| 34 | |||
| 35 | #define RGB_DI_PIN B15 | ||
| 36 | #define RGBLED_NUM 3 | ||
| 37 | #define WS2812_SPI SPID2 | ||
| 38 | #define WS2812_SPI_MOSI_PAL_MODE 0 | ||
| 39 | #define WS2812_SPI_SCK_PAL_MODE 0 | ||
| 40 | #define WS2812_SPI_SCK_PIN B13 | ||
| 41 | |||
| 42 | /* Set 0 if debouncing isn't needed */ | ||
| 43 | #define DEBOUNCE 5 | ||
| 44 | |||
| 45 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 46 | #define LOCKING_SUPPORT_ENABLE | ||
| 47 | /* Locking resynchronize hack */ | ||
| 48 | #define LOCKING_RESYNC_ENABLE | ||
