summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/nicekey/nicekey.h
diff options
context:
space:
mode:
authornoroadsleft <18669334+noroadsleft@users.noreply.github.com>2018-12-10 06:43:24 +0100
committerDrashna Jaelre <drashna@live.com>2018-12-10 06:43:24 +0100
commit753f57ee0003c9adde5446e813e3a347d4b15a2a (patch)
tree379859e43edd536f71e4b9b2e381f54fc0c322cc /keyboards/handwired/nicekey/nicekey.h
parentfd3b0787ed4fc8d58158fa8c7136bc1d3b48ab16 (diff)
downloadqmk_firmware-753f57ee0003c9adde5446e813e3a347d4b15a2a.tar.gz
qmk_firmware-753f57ee0003c9adde5446e813e3a347d4b15a2a.tar.xz
handwired/nicekey Refactor and readme cleanup (#4588)
* handwired/nicekey: refactor Now uses a layout macro. * handwired/nicekey: readme cleanup - linked maintainer's GitHub account - updated Docs links
Diffstat (limited to 'keyboards/handwired/nicekey/nicekey.h')
-rw-r--r--keyboards/handwired/nicekey/nicekey.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/keyboards/handwired/nicekey/nicekey.h b/keyboards/handwired/nicekey/nicekey.h
index 7a4a4835e..ee5bcfd6b 100644
--- a/keyboards/handwired/nicekey/nicekey.h
+++ b/keyboards/handwired/nicekey/nicekey.h
@@ -1 +1,12 @@
-#include "quantum.h" \ No newline at end of file
+#ifndef NICEKEY_H
+#define NICEKEY_H
+
+#include "quantum.h"
+
+#define LAYOUT( \
+ k00 \
+ ) { \
+ { k00 } \
+}
+
+#endif