summaryrefslogtreecommitdiff
path: root/keyboards/handwired/qc60/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/qc60/config.h')
-rw-r--r--keyboards/handwired/qc60/config.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/handwired/qc60/config.h b/keyboards/handwired/qc60/config.h
new file mode 100644
index 0000000000..3b6f84390b
--- /dev/null
+++ b/keyboards/handwired/qc60/config.h
@@ -0,0 +1,24 @@
+#pragma once
+
+#include "config_common.h"
+
+/* USB Device descriptor parameter */
+#define VENDOR_ID 0xFEED
+#define PRODUCT_ID 0x0C60
+#define DEVICE_VER 0x00C6
+#define MANUFACTURER PeiorisBoards
+#define PRODUCT QC60
+#define DESCRIPTION Split 60% staggered keyboard
+
+/* key matrix size */
+// Rows are doubled-up
+#define MATRIX_ROWS 10
+#define MATRIX_COLS 8
+
+/* Set 0 if debouncing isn't needed */
+#define DEBOUNCING_DELAY 5
+
+/* key combination for command */
+#define IS_COMMAND() ( \
+ keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
+)