diff options
author | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2018-12-09 21:43:24 -0800 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-12-09 21:43:24 -0800 |
commit | 753f57ee0003c9adde5446e813e3a347d4b15a2a (patch) | |
tree | 379859e43edd536f71e4b9b2e381f54fc0c322cc /keyboards/handwired/nicekey/nicekey.h | |
parent | fd3b0787ed4fc8d58158fa8c7136bc1d3b48ab16 (diff) |
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.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/keyboards/handwired/nicekey/nicekey.h b/keyboards/handwired/nicekey/nicekey.h index 7a4a4835e6..ee5bcfd6be 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 |