diff options
Diffstat (limited to 'keyboards/40percentclub/nano/nano.h')
-rw-r--r-- | keyboards/40percentclub/nano/nano.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/keyboards/40percentclub/nano/nano.h b/keyboards/40percentclub/nano/nano.h new file mode 100644 index 000000000..21d6c4f30 --- /dev/null +++ b/keyboards/40percentclub/nano/nano.h @@ -0,0 +1,14 @@ +#ifndef NANO_H +#define NANO_H + +#include "quantum.h" + +#define LAYOUT( \ + k01, k02, k03, k04, \ + k05, k06, k07, k08 \ + ) { \ + { k01, k02, k03, k04 }, \ + { k05, k06, k07, k08 } \ +} + +#endif |