| 1234567891011121314151617181920212223242526272829303132333435363738 |
- #pragma once
- #include "config_common.h"
- /* USB Device descriptor parameter */
- #define VENDOR_ID 0xFEED
- #define PRODUCT_ID 0xAF12
- #define DEVICE_VER 0x0001
- #define MANUFACTURER Keycapsss
- #define PRODUCT Plaid-Pad
- #define DESCRIPTION 4x4 numpad with through hole components
- /* key matrix size */
- #define MATRIX_ROWS 4
- #define MATRIX_COLS 4
- #define MATRIX_ROW_PINS { C0, C1, C2, C3 }
- #define MATRIX_COL_PINS { B0, D7, D6, D5 }
- #define UNUSED_PINS { B3, B4, B5, D4}
- #define ENCODERS_PAD_A { D0, B1 }
- #define ENCODERS_PAD_B { D1, B2 }
- #define ENCODER_RESOLUTION 4
- /* COL2ROW, ROW2COL*/
- #define DIODE_DIRECTION COL2ROW
- #define NO_UART 1
- #define USB_MAX_POWER_CONSUMPTION 100
- /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
- #define DEBOUNCE 5
- /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
- #define LOCKING_SUPPORT_ENABLE
- /* Locking resynchronize hack */
- #define LOCKING_RESYNC_ENABLE
|