summaryrefslogtreecommitdiffstats
path: root/keyboards/daisy/daisy.h
diff options
context:
space:
mode:
authorMax <17062872+westfoxtrot@users.noreply.github.com>2017-11-22 16:52:42 +0100
committerJack Humbert <jack.humb@gmail.com>2017-11-22 16:52:42 +0100
commitdcc363390f47ec23fdbc04bb56bb03a3cbf310e6 (patch)
treec712e675897af51446632f8b45d688e47d9faa94 /keyboards/daisy/daisy.h
parent62eed0e4a3a6ea13ec130ac7acd25d935917344f (diff)
downloadqmk_firmware-dcc363390f47ec23fdbc04bb56bb03a3cbf310e6.tar.gz
qmk_firmware-dcc363390f47ec23fdbc04bb56bb03a3cbf310e6.tar.xz
Added Daisy port (#2016)
* Add files via upload * Update readme.md * Update readme.md * Update readme.md * Add files via upload * Delete config.h * Delete rules.mk * Add files via upload * Update config.h * revised config files * revised readme * Update readme.md * Update readme.md
Diffstat (limited to 'keyboards/daisy/daisy.h')
-rw-r--r--keyboards/daisy/daisy.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/keyboards/daisy/daisy.h b/keyboards/daisy/daisy.h
new file mode 100644
index 000000000..7e45bee2b
--- /dev/null
+++ b/keyboards/daisy/daisy.h
@@ -0,0 +1,19 @@
+#ifndef DAISY_H
+#define DAISY_H
+
+#include "quantum.h"
+
+#define KEYMAP( \
+ K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K3A, \
+ K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, \
+ K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, \
+ K30, K31, K32, K34, K35, K37, K38, K39 \
+) \
+{ \
+ { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A }, \
+ { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A }, \
+ { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A }, \
+ { K30, K31, K32, KC_NO, K34, K35, KC_NO, K37, K38, K39, K3A } \
+}
+
+#endif \ No newline at end of file