diff options
author | Max <17062872+westfoxtrot@users.noreply.github.com> | 2017-11-22 15:52:42 +0000 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-11-22 10:52:42 -0500 |
commit | dcc363390f47ec23fdbc04bb56bb03a3cbf310e6 (patch) | |
tree | c712e675897af51446632f8b45d688e47d9faa94 /keyboards/daisy/daisy.h | |
parent | 62eed0e4a3a6ea13ec130ac7acd25d935917344f (diff) | |
download | qmk_firmware-dcc363390f47ec23fdbc04bb56bb03a3cbf310e6.tar.gz |
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.h | 19 |
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 |