aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/68keys/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/68keys/config.h')
-rw-r--r--keyboards/68keys/config.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/keyboards/68keys/config.h b/keyboards/68keys/config.h
new file mode 100644
index 000000000..07c87563d
--- /dev/null
+++ b/keyboards/68keys/config.h
@@ -0,0 +1,42 @@
+#pragma once
+
+#include "config_common.h"
+
+/* USB Device descriptor parameter */
+#define VENDOR_ID 0xFEED
+#define PRODUCT_ID 0x0A0C
+#define DEVICE_VER 0x0068
+#define MANUFACTURER 68Keys.io
+#define PRODUCT The 68Keys.io Keyboard
+#define DESCRIPTION A 68 keys mechanical keyboard
+
+/* key matrix size */
+#define MATRIX_ROWS 8
+#define MATRIX_COLS 9
+
+#define MATRIX_ROW_PINS \
+ { \
+ B6, B2, B3, B1, F7, F6, F5, F4 \
+ }
+#define MATRIX_COL_PINS \
+ { \
+ D3, D2, D1, D0, D4, C6, D7, E6, B4 \
+ }
+#define UNUSED_PINS
+
+#define DIODE_DIRECTION COL2ROW
+
+#define BACKLIGHT_PIN B5
+#define BACKLIGHT_BREATHING
+#define BACKLIGHT_LEVELS 3
+
+#define DEBOUNCING_DELAY 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
+
+/* key combination for magic key command */
+#define IS_COMMAND() ( \
+ keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)))