[Keyboard] Add handwired Wulkan keyboard (#6282)
* added handwired keyboard wulkan * added info.json for qmk configurator * fixed spelling * enum dont need to be assigned to zero * removed cflag from readme * updated rules.mk * removed unneeded rows from config * moved unicode to keymap conf * fix adjust layer and comments for keymap
This commit is contained in:
parent
3ee062222a
commit
e6420f0bd8
8 changed files with 211 additions and 0 deletions
23
keyboards/handwired/wulkan/config.h
Normal file
23
keyboards/handwired/wulkan/config.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
#pragma once
|
||||
|
||||
#include "config_common.h"
|
||||
|
||||
/* USB Device descriptor parameter */
|
||||
#define VENDOR_ID 0xFEED
|
||||
#define PRODUCT_ID 0x6060
|
||||
#define DEVICE_VER 0x0001
|
||||
#define MANUFACTURER Wulkan
|
||||
#define PRODUCT Handwired48Keys
|
||||
#define DESCRIPTION A compact ortholinear handwired keyboard
|
||||
|
||||
/* key matrix size */
|
||||
#define MATRIX_ROWS 4
|
||||
#define MATRIX_COLS 12
|
||||
|
||||
#define MATRIX_ROW_PINS { B8, A0, A1, A2 }
|
||||
#define MATRIX_COL_PINS { B13, B14, B15, B9, B7, B6, B5, B4, B3, B2, B1, B0 }
|
||||
|
||||
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
|
||||
#define DEBOUNCE 5
|
||||
|
||||
#define FORCE_NKRO
|
Loading…
Add table
Add a link
Reference in a new issue