diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-10-06 19:44:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-06 19:44:39 -0400 |
commit | 91d2b64850acb94177eca0c0c03380282c1b890b (patch) | |
tree | 0dfd260ebffa260a735fc299a8fb3e6d5f79a4a5 /keyboards/handwired/gamenum/gamenum.h | |
parent | d465e3f0c384654b4e65f4dc031a0c7422cdf853 (diff) | |
parent | b7442999dff637696842f272edca870f8e2f64e4 (diff) |
Merge pull request #805 from SethSenpai/gamenum
Gamenum
Diffstat (limited to 'keyboards/handwired/gamenum/gamenum.h')
-rw-r--r-- | keyboards/handwired/gamenum/gamenum.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/keyboards/handwired/gamenum/gamenum.h b/keyboards/handwired/gamenum/gamenum.h new file mode 100644 index 0000000000..ea633b9bfa --- /dev/null +++ b/keyboards/handwired/gamenum/gamenum.h @@ -0,0 +1,21 @@ +#ifndef GAMENUM_H +#define GAMENUM_H + +#include "quantum.h" + +#define KEYMAP( \ + k00, k01, k02, k03, \ + k10, k11, k12, k13, \ + k20, k21, k22, \ + k30, k31, k32, \ + k41, k42, k43 \ +) \ +{ \ + { k00, k01, k02, k03}, \ + { k10, k11, k12, k13}, \ + { k20, k21, k22, KC_NO}, \ + { k30, k31, k32, KC_NO}, \ + { KC_NO, k41, k42, k43} \ +} + +#endif |