[Keyboard] Move scrabblepad into donutcables directory (#5553) * move scrabblepad into donutcables directory * use pragma once * update scrabblepad readme
11 files changed, 5 insertions(+), 11 deletions(-) R keyboards/{ => donutcables}/scrabblepad/config.h R keyboards/{ => donutcables}/scrabblepad/info.json R keyboards/{ => donutcables}/scrabblepad/keymaps/default/config.h R keyboards/{ => donutcables}/scrabblepad/keymaps/default/keymap.c R keyboards/{ => donutcables}/scrabblepad/keymaps/default/readme.md R keyboards/{ => donutcables}/scrabblepad/keymaps/random/keymap.c R keyboards/{ => donutcables}/scrabblepad/keymaps/random/readme.md R keyboards/{ => donutcables}/scrabblepad/readme.md R keyboards/{ => donutcables}/scrabblepad/rules.mk R keyboards/{ => donutcables}/scrabblepad/scrabblepad.c R keyboards/{ => donutcables}/scrabblepad/scrabblepad.h
R keyboards/scrabblepad/config.h => keyboards/donutcables/scrabblepad/config.h +2 -5
@@ 15,8 15,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef CONFIG_H #define CONFIG_H #pragma once #include "config_common.h" @@ 49,7 48,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. /* COL2ROW, ROW2COL*/ #define DIODE_DIRECTION COL2ROW // #define BACKLIGHT_PIN // #define BACKLIGHT_PIN // #define BACKLIGHT_BREATHING // #define BACKLIGHT_LEVELS 3 @@ 188,5 187,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ //#define MIDI_TONE_KEYCODE_OCTAVES 1 #endif
R keyboards/scrabblepad/info.json => keyboards/donutcables/scrabblepad/info.json +0 -0
R keyboards/scrabblepad/keymaps/default/config.h => keyboards/donutcables/scrabblepad/keymaps/default/config.h +0 -0
R keyboards/scrabblepad/keymaps/default/keymap.c => keyboards/donutcables/scrabblepad/keymaps/default/keymap.c +0 -0
R keyboards/scrabblepad/keymaps/default/readme.md => keyboards/donutcables/scrabblepad/keymaps/default/readme.md +0 -0
R keyboards/scrabblepad/keymaps/random/keymap.c => keyboards/donutcables/scrabblepad/keymaps/random/keymap.c +0 -0
R keyboards/scrabblepad/keymaps/random/readme.md => keyboards/donutcables/scrabblepad/keymaps/random/readme.md +0 -0
R keyboards/scrabblepad/readme.md => keyboards/donutcables/scrabblepad/readme.md +2 -2
@@ 12,6 12,6 @@ Hardware Availability: [Donut Cables](https://donutcables.com/) Make example for this keyboard (after setting up your build environment): make scrabblepad:default make donutcables/scrabblepad:default See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
R keyboards/scrabblepad/rules.mk => keyboards/donutcables/scrabblepad/rules.mk +0 -0
R keyboards/scrabblepad/scrabblepad.c => keyboards/donutcables/scrabblepad/scrabblepad.c +0 -0
R keyboards/scrabblepad/scrabblepad.h => keyboards/donutcables/scrabblepad/scrabblepad.h +1 -4
@@ 13,8 13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef SCRABBLEPAD_H #define SCRABBLEPAD_H #pragma once #include "quantum.h" @@ 53,5 52,3 @@ { kD0, kD1, kD2, kD3, kD4, kD5, kD6, kD7, kD8, kD9, kDA, kDB, kDC, kDD, kDE, }, \ { kE0, kE1, kE2, kE3, kE4, kE5, kE6, kE7, kE8, kE9, kEA, kEB, kEC, kED, kEE } \ } #endif