Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FightPad! macropad #10507

Merged
merged 8 commits into from
Oct 2, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions keyboards/clawsome/fightpad/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
Copyright 2020 AAClawson (AlisGraveNil)

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once

#include "config_common.h"

/* USB Device descriptor parameter */
#define VENDOR_ID 0x7767
#define PRODUCT_ID 0x0000
AlisGraveNil marked this conversation as resolved.
Show resolved Hide resolved
#define DEVICE_VER 0x0001
#define MANUFACTURER AlisGraveNil
#define PRODUCT FightPad
/* key matrix size */
#define MATRIX_ROWS 2
#define MATRIX_COLS 7

/*
* Keyboard Matrix Assignments
*
* Change this to how you wired your keyboard
* COLS: AVR pins used for columns, left to right
* ROWS: AVR pins used for rows, top to bottom
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
*
*/
#define MATRIX_ROW_PINS { B5, B6 }
#define MATRIX_COL_PINS { D7, E6, B4, B2, B3, B1, F7 }

#define DIODE_DIRECTION COL2ROW
16 changes: 16 additions & 0 deletions keyboards/clawsome/fightpad/fightpad.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/* Copyright 2020 AAClawson (AlisGraveNil)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "fightpad.h"
26 changes: 26 additions & 0 deletions keyboards/clawsome/fightpad/fightpad.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/* Copyright 2020 AAClawson (AlisGraveNil)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once

#include "quantum.h"

#define LAYOUT( \
K01, K03, K04, K05, K06, \
K10, K11, K12, K13, K14, K15, K16 \
) { \
{ KC_NO, K01, KC_NO, K03, K04, K05, K06 }, \
{ K10, K11, K12, K13, K14, K15, K16 }, \
}
28 changes: 28 additions & 0 deletions keyboards/clawsome/fightpad/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"keyboard_name": "FightPad",
"url": "www.clawboards.xyz",
"maintainer": "AAClawson (AlisGraveNil)",
"width": 8,
"height": 2,
"layouts": {
"LAYOUT": {
"key_count": 12,
AlisGraveNil marked this conversation as resolved.
Show resolved Hide resolved
"layout": [
{"label":"K01 (B5,E6)", "x":1, "y":0},
{"label":"K03 (B5,B2)", "x":4, "y":0},
{"label":"K04 (B5,B3)", "x":5, "y":0},
{"label":"K05 (B5,B1)", "x":6, "y":0},
{"label":"K06 (B5,F7)", "x":7, "y":0},
{"label":"K10 (B6,D7)", "x":0, "y":1},
{"label":"K11 (B6,E6)", "x":1, "y":1},
{"label":"K12 (B6,B4)", "x":2, "y":1},
{"label":"K13 (B6,B2)", "x":4, "y":1},
{"label":"K14 (B6,B3)", "x":5, "y":1},
{"label":"K15 (B6,B1)", "x":6, "y":1},
{"label":"K16 (B6,F7)", "x":7, "y":1}
]
}
}
,"meta": "https://noroadsleft.github.io/kbf_qmk_converter/"
AlisGraveNil marked this conversation as resolved.
Show resolved Hide resolved
}

25 changes: 25 additions & 0 deletions keyboards/clawsome/fightpad/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/* Copyright 2020 REPLACE_WITH_YOUR_NAME
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
KC_W, KC_U, KC_I, KC_O, KC_P,
KC_A, KC_S, KC_D, KC_H, KC_J, KC_K, KC_L
),

};

13 changes: 13 additions & 0 deletions keyboards/clawsome/fightpad/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# FightPad

This is a 2x7 macropad.

* Keyboard Maintainer: [AAClawson](https://github.com/AlisGraveNil)
* Hardware Supported: Los Numeros, Pro Micro, Elite-C
AlisGraveNil marked this conversation as resolved.
Show resolved Hide resolved
* Hardware Availability: www.clawboards.xyz
AlisGraveNil marked this conversation as resolved.
Show resolved Hide resolved

Make example for this keyboard (after setting up your build environment):

make clawsome/fightpad:default

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).
22 changes: 22 additions & 0 deletions keyboards/clawsome/fightpad/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# MCU name
MCU = atmega32u4

# Bootloader selection
BOOTLOADER = caterina

# Build Options
# change yes to no to disable
#
BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
MOUSEKEY_ENABLE = yes # Mouse keys
EXTRAKEY_ENABLE = yes # Audio control and System control
CONSOLE_ENABLE = no # Console for debug
COMMAND_ENABLE = no # Commands for debug and configuration
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
NKRO_ENABLE = no # USB Nkey Rollover
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
BLUETOOTH_ENABLE = no # Enable Bluetooth
AUDIO_ENABLE = no # Audio output