1
0
Fork 0

Add 6-ball macropad

This commit is contained in:
Danny Nguyen 2017-10-31 17:03:14 -04:00 committed by Jack Humbert
parent fca03e15b9
commit c9a0436422
7 changed files with 186 additions and 0 deletions

16
keyboards/6ball/6ball.h Normal file
View file

@ -0,0 +1,16 @@
#ifndef SIXBALL_H
#define SIXBALL_H
#include "quantum.h"
#define KEYMAP( \
k01, k02, k03, \
k04, k05, k06 \
) \
{ \
{ k02, k03, k06, k05, k04, k01 } \
}
#define KC_KEYMAP(k01, k02, k03, k04, k05, k06) KEYMAP(KC_##k01, KC_##k02, KC_##k03, KC_##k04, KC_##k05, KC_##k06)
#endif