~ruther/qmk_firmware

f68abbf6c8668d68e5eab0be9c537fe1ca5fa79f — QMK Bot 5 years ago 897c4cd
format code according to conventions [skip ci]
M keyboards/yncognito/batpad/batpad.c => keyboards/yncognito/batpad/batpad.c +35 -35
@@ 1,35 1,35 @@
/* Copyright 2020 Yncognito
 *
 * 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 "batpad.h"


#ifdef RGB_MATRIX_ENABLE
led_config_t g_led_config ={
    {
        {4  ,5  ,6  ,7  },
        {0  ,1  ,2  ,3  }
	},
	{
        {0,0},{75,0},{145,0},{224,0},
        {0,64},{75,64},{145,64},{224,64}
    },
    {
        0x04,0x04,0x04,0x04,
        0x04,0x04,0x04,0x04
    }
};

#endif
/* Copyright 2020 Yncognito
 *
 * 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 "batpad.h"


#ifdef RGB_MATRIX_ENABLE
led_config_t g_led_config ={
    {
        {4  ,5  ,6  ,7  },
        {0  ,1  ,2  ,3  }
	},
	{
        {0,0},{75,0},{145,0},{224,0},
        {0,64},{75,64},{145,64},{224,64}
    },
    {
        0x04,0x04,0x04,0x04,
        0x04,0x04,0x04,0x04
    }
};

#endif

M keyboards/yncognito/batpad/batpad.h => keyboards/yncognito/batpad/batpad.h +29 -29
@@ 1,29 1,29 @@
/* Copyright 2020 Yncognito
 *
 * 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_ortho_2x4( \
    K00, K01, K02, K03,   \
    K10, K11, K12, K13    \
) { \
    { K00,   K01,   K02,   K03   }, \
    { K10,   K11,   K12,   K13   }, \
}

// generated by KBFirmware JSON to QMK Parser
// https://noroadsleft.github.io/kbf_qmk_converter/
/* Copyright 2020 Yncognito
 *
 * 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_ortho_2x4( \
    K00, K01, K02, K03,   \
    K10, K11, K12, K13    \
) { \
    { K00,   K01,   K02,   K03   }, \
    { K10,   K11,   K12,   K13   }, \
}

// generated by KBFirmware JSON to QMK Parser
// https://noroadsleft.github.io/kbf_qmk_converter/

M keyboards/yncognito/batpad/config.h => keyboards/yncognito/batpad/config.h +60 -60
@@ 1,60 1,60 @@
/*
Copyright 2020 Yncognito

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       0x7979
#define PRODUCT_ID      0x6602
#define DEVICE_VER      0x0001
#define MANUFACTURER    Yncognito
#define PRODUCT         Batpad
#define DESCRIPTION     A bat with 8 keys

/* key matrix size */
#define MATRIX_ROWS 2
#define MATRIX_COLS 4

/*
 * 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 { F4, C7 }
#define MATRIX_COL_PINS { F1, F0, D5, D3 }

#define DIODE_DIRECTION COL2ROW

#define RGB_DI_PIN B5
#define DRIVER_LED_TOTAL 8
#define RGB_MATRIX_KEYPRESSES 
#define RGB_MATRIX_KEYRELEASES 
#define RGB_MATRIX_FRAMEBUFFER_EFFECTS
#define RGB_DISABLE_AFTER_TIMEOUT 0 
#define RGB_DISABLE_WHEN_USB_SUSPENDED false 
#define RGB_MATRIX_LED_FLUSH_LIMIT 16 
#define RGB_MATRIX_MAXIMUM_BRIGHTNESS 255 
#define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_CYCLE_ALL

        
/*
Copyright 2020 Yncognito

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       0x7979
#define PRODUCT_ID      0x6602
#define DEVICE_VER      0x0001
#define MANUFACTURER    Yncognito
#define PRODUCT         Batpad
#define DESCRIPTION     A bat with 8 keys

/* key matrix size */
#define MATRIX_ROWS 2
#define MATRIX_COLS 4

/*
 * 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 { F4, C7 }
#define MATRIX_COL_PINS { F1, F0, D5, D3 }

#define DIODE_DIRECTION COL2ROW

#define RGB_DI_PIN B5
#define DRIVER_LED_TOTAL 8
#define RGB_MATRIX_KEYPRESSES 
#define RGB_MATRIX_KEYRELEASES 
#define RGB_MATRIX_FRAMEBUFFER_EFFECTS
#define RGB_DISABLE_AFTER_TIMEOUT 0 
#define RGB_DISABLE_WHEN_USB_SUSPENDED false 
#define RGB_MATRIX_LED_FLUSH_LIMIT 16 
#define RGB_MATRIX_MAXIMUM_BRIGHTNESS 255 
#define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_CYCLE_ALL

        

M keyboards/yncognito/batpad/info.json => keyboards/yncognito/batpad/info.json +23 -23
@@ 1,23 1,23 @@
{
    "keyboard_name": "batpad",
    "url": "",
    "maintainer": "qmk",
    "width": 4,
    "height": 2,
    "layouts": {
        "LAYOUT_ortho_2x4": {
            "key_count": 8,
            "layout": [
                {"label":"K00 (F4,F1)", "x":0, "y":0},
                {"label":"K01 (F4,F0)", "x":1, "y":0},
                {"label":"K02 (F4,D5)", "x":2, "y":0},
                {"label":"K03 (F4,D3)", "x":3, "y":0},
                {"label":"K10 (C7,F1)", "x":0, "y":1},
                {"label":"K11 (C7,F0)", "x":1, "y":1},
                {"label":"K12 (C7,D5)", "x":2, "y":1},
                {"label":"K13 (C7,D3)", "x":3, "y":1}
            ]
        }
    }
    ,"meta": "https://noroadsleft.github.io/kbf_qmk_converter/"
}
{
    "keyboard_name": "batpad",
    "url": "",
    "maintainer": "qmk",
    "width": 4,
    "height": 2,
    "layouts": {
        "LAYOUT_ortho_2x4": {
            "key_count": 8,
            "layout": [
                {"label":"K00 (F4,F1)", "x":0, "y":0},
                {"label":"K01 (F4,F0)", "x":1, "y":0},
                {"label":"K02 (F4,D5)", "x":2, "y":0},
                {"label":"K03 (F4,D3)", "x":3, "y":0},
                {"label":"K10 (C7,F1)", "x":0, "y":1},
                {"label":"K11 (C7,F0)", "x":1, "y":1},
                {"label":"K12 (C7,D5)", "x":2, "y":1},
                {"label":"K13 (C7,D3)", "x":3, "y":1}
            ]
        }
    }
    ,"meta": "https://noroadsleft.github.io/kbf_qmk_converter/"
}

M keyboards/yncognito/batpad/keymaps/default/keymap.c => keyboards/yncognito/batpad/keymaps/default/keymap.c +34 -34
@@ 1,34 1,34 @@
/* Copyright 2020 Yncognito
 *
 * 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_ortho_2x4(

        KC_Q,    KC_W,    KC_E,    KC_R,
        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
    ),
    [1] = LAYOUT_ortho_2x4(
        KC_Q,    KC_W,    KC_E,    KC_R,
        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
    ),
    [2] = LAYOUT_ortho_2x4(
        KC_Q,    KC_W,    KC_E,    KC_R,
        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
    ),


};
/* Copyright 2020 Yncognito
 *
 * 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_ortho_2x4(

        KC_Q,    KC_W,    KC_E,    KC_R,
        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
    ),
    [1] = LAYOUT_ortho_2x4(
        KC_Q,    KC_W,    KC_E,    KC_R,
        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
    ),
    [2] = LAYOUT_ortho_2x4(
        KC_Q,    KC_W,    KC_E,    KC_R,
        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
    ),


};

M keyboards/yncognito/batpad/keymaps/via/keymap.c => keyboards/yncognito/batpad/keymaps/via/keymap.c +36 -36
@@ 1,36 1,36 @@
/* Copyright 2020 Yncognito
 *
 * 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_ortho_2x4(
        KC_Q,    KC_W,    KC_E,    KC_R,
        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
    ),
    [1] = LAYOUT_ortho_2x4(
        KC_Q,    KC_W,    KC_E,    KC_R,
        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
    ),
    [2] = LAYOUT_ortho_2x4(
        KC_Q,    KC_W,    KC_E,    KC_R,
        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
    ),
    [3] = LAYOUT_ortho_2x4(
        _______, _______, _______, _______,
        _______, _______, _______, _______
    ),

};
/* Copyright 2020 Yncognito
 *
 * 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_ortho_2x4(
        KC_Q,    KC_W,    KC_E,    KC_R,
        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
    ),
    [1] = LAYOUT_ortho_2x4(
        KC_Q,    KC_W,    KC_E,    KC_R,
        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
    ),
    [2] = LAYOUT_ortho_2x4(
        KC_Q,    KC_W,    KC_E,    KC_R,
        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
    ),
    [3] = LAYOUT_ortho_2x4(
        _______, _______, _______, _______,
        _______, _______, _______, _______
    ),

};

M keyboards/yncognito/batpad/rules.mk => keyboards/yncognito/batpad/rules.mk +35 -35
@@ 1,35 1,35 @@
# MCU name
MCU = atmega32u4

# Bootloader selection
#   Teensy       halfkay
#   Pro Micro    caterina
#   Atmel DFU    atmel-dfu
#   LUFA DFU     lufa-dfu
#   QMK DFU      qmk-dfu
#   ATmega32A    bootloadHID
#   ATmega328P   USBasp
BOOTLOADER = atmel-dfu

# 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 = yes             # USB Nkey Rollover
BACKLIGHT_ENABLE = no        # Enable keyboard backlight functionality
RGB_MATRIX_ENABLE = WS2812       
MIDI_ENABLE = no             # MIDI support
UNICODE_ENABLE = no          # Unicode
BLUETOOTH_ENABLE = no        # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no            # Audio output on port C6
FAUXCLICKY_ENABLE = no       # Use buzzer to emulate clicky switches

# generated by KBFirmware JSON to QMK Parser
# https://noroadsleft.github.io/kbf_qmk_converter/
# MCU name
MCU = atmega32u4

# Bootloader selection
#   Teensy       halfkay
#   Pro Micro    caterina
#   Atmel DFU    atmel-dfu
#   LUFA DFU     lufa-dfu
#   QMK DFU      qmk-dfu
#   ATmega32A    bootloadHID
#   ATmega328P   USBasp
BOOTLOADER = atmel-dfu

# 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 = yes             # USB Nkey Rollover
BACKLIGHT_ENABLE = no        # Enable keyboard backlight functionality
RGB_MATRIX_ENABLE = WS2812       
MIDI_ENABLE = no             # MIDI support
UNICODE_ENABLE = no          # Unicode
BLUETOOTH_ENABLE = no        # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no            # Audio output on port C6
FAUXCLICKY_ENABLE = no       # Use buzzer to emulate clicky switches

# generated by KBFirmware JSON to QMK Parser
# https://noroadsleft.github.io/kbf_qmk_converter/