diff options
author | omkbd <takuya.electronics@gmail.com> | 2019-06-07 04:50:00 +0900 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-06-06 12:50:00 -0700 |
commit | 872480dde2ba4713a96404d1a0a55db71a9d1b9b (patch) | |
tree | 0064691e12f6ed3a6f7ba3664b94353bc816dc6c /keyboards/runner3680/runner3680.h | |
parent | 06975aa0dd47b7fa1756735f159750af1381ff4e (diff) |
[Keyboard] add runner3680 keyboards (#6069)
* add runner3680
* Remove unnecessary code
Diffstat (limited to 'keyboards/runner3680/runner3680.h')
-rw-r--r-- | keyboards/runner3680/runner3680.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/keyboards/runner3680/runner3680.h b/keyboards/runner3680/runner3680.h new file mode 100644 index 0000000000..e7842b765a --- /dev/null +++ b/keyboards/runner3680/runner3680.h @@ -0,0 +1,39 @@ +#pragma once + +#include "quantum.h" + +#ifdef KEYBOARD_runner3680_5x8 + #include "5x8.h" +#endif + +#ifdef KEYBOARD_runner3680_5x7 + #include "5x7.h" +#endif + +#ifdef KEYBOARD_runner3680_5x6 + #include "5x6.h" +#endif + +#ifdef KEYBOARD_runner3680_4x8 + #include "4x8.h" +#endif + +#ifdef KEYBOARD_runner3680_4x7 + #include "4x7.h" +#endif + +#ifdef KEYBOARD_runner3680_4x6 + #include "4x6.h" +#endif + +#ifdef KEYBOARD_runner3680_3x8 + #include "3x8.h" +#endif + +#ifdef KEYBOARD_runner3680_3x7 + #include "3x7.h" +#endif + +#ifdef KEYBOARD_runner3680_3x6 + #include "3x6.h" +#endif |