summaryrefslogtreecommitdiff
path: root/keyboards/handwired/practice60/practice60.h
diff options
context:
space:
mode:
authorAndrew Kannan <andrew.kannan@klaviyo.com>2018-11-12 19:31:22 -0500
committerDrashna Jaelre <drashna@live.com>2018-11-12 16:31:22 -0800
commite653cc198e3a535f23ae33d677115f192979ee55 (patch)
tree5cfd500f945829e3d8dcfaf687940e15f6a93ec4 /keyboards/handwired/practice60/practice60.h
parent599b21b9f4b450392380870675b136449839f6e5 (diff)
The "Practice60" Board, Blue Pill powered (#4407)
* Starting point for blue pill based practice60 * Changes * add * try raw bin no botloader * swap back to bootloader version * edit * Remove debug LED flash * Disable JTAG to open up B3 and B4 * Add led backlight support (no breathing yet) * Update matrix for correctness * RGB Underglow working in a very simple state * not as bright * Move to handwired * revert ChibiOS_Test changes * Changes based on PR comments * Address PR comments v2 * Move files
Diffstat (limited to 'keyboards/handwired/practice60/practice60.h')
-rw-r--r--keyboards/handwired/practice60/practice60.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/keyboards/handwired/practice60/practice60.h b/keyboards/handwired/practice60/practice60.h
new file mode 100644
index 0000000000..ffcf506143
--- /dev/null
+++ b/keyboards/handwired/practice60/practice60.h
@@ -0,0 +1,18 @@
+#pragma once
+
+#include "quantum.h"
+
+#define LAYOUT_60_ansi( \
+ K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \
+ K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \
+ K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, \
+ K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, \
+ K40, K41, K42, K43, K49, K4A, K4B, K4C \
+) { \
+ { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D }, \
+ { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D }, \
+ { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C }, \
+ { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B }, \
+ { K40, K41, K42, K43, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, K49, K4A, K4B, K4C }, \
+}
+