adds sweet16 and four banger keyboards

This commit is contained in:
Jack Humbert
2017-08-21 16:38:43 -04:00
parent 48e79cbe29
commit 1ce3971c90
14 changed files with 358 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef KB_H
#define KB_H
#include "quantum.h"
#define LAYOUT_ortho_2x2( \
K00, K01, \
K10, K11 \
) { \
{ K00, K01 }, \
{ K10, K11 } \
}
#endif