~ruther/qmk_firmware

266ff3339a72a9c44913cfd97e232adafe8feb51 — AlisGraveNil 5 years ago c01eb55
[Keyboard] FightPad! macropad by Clawsome (#10507)

* 1 Oct 20

* Update keyboards/clawsome/fightpad/config.h

* Update keyboards/clawsome/fightpad/rules.mk

* Update keyboards/clawsome/fightpad/info.json

* Update keyboards/clawsome/fightpad/readme.md

* Update keyboards/clawsome/fightpad/readme.md

* Update keyboards/clawsome/fightpad/info.json

* Update keyboards/clawsome/fightpad/config.h
A keyboards/clawsome/fightpad/config.h => keyboards/clawsome/fightpad/config.h +45 -0
@@ 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      0x481C
#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

A keyboards/clawsome/fightpad/fightpad.c => keyboards/clawsome/fightpad/fightpad.c +16 -0
@@ 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"
\ No newline at end of file

A keyboards/clawsome/fightpad/fightpad.h => keyboards/clawsome/fightpad/fightpad.h +26 -0
@@ 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   }, \
}

A keyboards/clawsome/fightpad/info.json => keyboards/clawsome/fightpad/info.json +25 -0
@@ 0,0 1,25 @@
{
    "keyboard_name": "FightPad",
    "url": "www.clawboards.xyz",
    "maintainer": "AAClawson (AlisGraveNil)",
    "width": 8,
    "height": 2,
    "layouts": {
        "LAYOUT": {
            "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}
            ]
        }
    }
}

A keyboards/clawsome/fightpad/keymaps/default/keymap.c => keyboards/clawsome/fightpad/keymaps/default/keymap.c +25 -0
@@ 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
    ),

};


A keyboards/clawsome/fightpad/readme.md => keyboards/clawsome/fightpad/readme.md +13 -0
@@ 0,0 1,13 @@
# FightPad

This is a 2x7 macropad.

* Keyboard Maintainer: [AAClawson](https://github.com/AlisGraveNil)
* Hardware Supported: FightPad; Pro Micro or Elite-C
* Hardware Availability: [Clawsome Boards](https://www.clawboards.xyz/)

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).

A keyboards/clawsome/fightpad/rules.mk => keyboards/clawsome/fightpad/rules.mk +22 -0
@@ 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