[Keyboard] Add RooPad (#15215)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Wolf Van Herreweghe <wolfvh@getupgamesofficial.com>
This commit is contained in:
parent
62e01928cd
commit
569eee20b4
9 changed files with 326 additions and 0 deletions
71
keyboards/skippys_custom_pcs/roopad/config.h
Normal file
71
keyboards/skippys_custom_pcs/roopad/config.h
Normal file
|
@ -0,0 +1,71 @@
|
|||
/*
|
||||
Copyright 2020 <contact@vwolf.be>
|
||||
|
||||
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 0x36B6 // skippys_custom_pcs
|
||||
#define PRODUCT_ID 0x0001 // RooPad
|
||||
#define DEVICE_VER 0x0001 // Version 1
|
||||
#define MANUFACTURER ToastyStoemp
|
||||
#define PRODUCT RooPad
|
||||
|
||||
/* key matrix size */
|
||||
#define MATRIX_ROWS 5
|
||||
#define MATRIX_COLS 5
|
||||
|
||||
/*
|
||||
* 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)
|
||||
*
|
||||
*/
|
||||
|
||||
// Checked with Eagle Schematic
|
||||
#define MATRIX_ROW_PINS { B5, F6, F5, F4, F1 }
|
||||
#define MATRIX_COL_PINS { F0, B4, D7, D6, D4 }
|
||||
#define UNUSED_PINS
|
||||
|
||||
/* COL2ROW or ROW2COL */
|
||||
#define DIODE_DIRECTION COL2ROW
|
||||
|
||||
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
|
||||
#define DEBOUNCE 5
|
||||
|
||||
#define RGB_DI_PIN B6
|
||||
#define RGBLED_NUM 21
|
||||
#define RGBLIGHT_SLEEP
|
||||
|
||||
#define RGBLIGHT_EFFECT_ALTERNATING
|
||||
#define RGBLIGHT_EFFECT_BREATHING
|
||||
#define RGBLIGHT_EFFECT_CHRISTMAS
|
||||
#define RGBLIGHT_EFFECT_KNIGHT
|
||||
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
|
||||
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
|
||||
#define RGBLIGHT_EFFECT_RGB_TEST
|
||||
#define RGBLIGHT_EFFECT_SNAKE
|
||||
#define RGBLIGHT_EFFECT_STATIC_GRADIENT
|
||||
#define RGBLIGHT_EFFECT_TWINKLE
|
||||
|
||||
#define NO_ACTION_MACRO
|
||||
#define NO_ACTION_FUNCTION
|
10
keyboards/skippys_custom_pcs/roopad/info.json
Normal file
10
keyboards/skippys_custom_pcs/roopad/info.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"keyboard_name": "RooPad",
|
||||
"url": "",
|
||||
"maintainer": "ToastyStoemp",
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [{"label":"Num Lock", "x":1.5, "y":0}, {"label":"/", "x":2.5, "y":0}, {"label":"*", "x":3.5, "y":0}, {"label":"-", "x":4.5, "y":0}, {"x":0, "y":1}, {"label":"7", "x":1.5, "y":1}, {"label":"8", "x":2.5, "y":1}, {"label":"9", "x":3.5, "y":1}, {"label":"+", "x":4.5, "y":1, "h":2}, {"x":0, "y":2}, {"label":"4", "x":1.5, "y":2}, {"label":"5", "x":2.5, "y":2}, {"label":"6", "x":3.5, "y":2}, {"x":0, "y":3}, {"label":"1", "x":1.5, "y":3}, {"label":"2", "x":2.5, "y":3}, {"label":"3", "x":3.5, "y":3}, {"label":"Enter", "x":4.5, "y":3, "h":2}, {"x":0, "y":4}, {"label":"0", "x":1.5, "y":4, "w":2}, {"label":".", "x":3.5, "y":4}]
|
||||
}
|
||||
}
|
||||
}
|
67
keyboards/skippys_custom_pcs/roopad/keymaps/default/keymap.c
Normal file
67
keyboards/skippys_custom_pcs/roopad/keymaps/default/keymap.c
Normal file
|
@ -0,0 +1,67 @@
|
|||
/*
|
||||
Copyright 2020 <contact@vwolf.be>
|
||||
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
|
||||
|
||||
enum layers {
|
||||
_LAYER0,
|
||||
_LAYER1,
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
/*
|
||||
* ┌───┬───┬───┬───┐
|
||||
* │Num│ / │ * │ - │
|
||||
* ┌───┬─┼───┼───┼───┼───┤
|
||||
* │Cal│ │ 7 │ 8 │ 9 │ │
|
||||
* ├───┼─┼───┼───┼───┤ + │
|
||||
* │WWW│ │ 4 │ 5 │ 6 │ │
|
||||
* ├───┼─┼───┼───┼───┼───┤
|
||||
* │Mai│ │ 1 │ 2 │ 3 │ E │
|
||||
* ├───┼─┼───┴───┼───┤ N │
|
||||
* │FN │ │ 0 │ . │ T │
|
||||
* └───┴─┴───────┴───┴───┘
|
||||
*/
|
||||
|
||||
[_LAYER0] = LAYOUT(
|
||||
KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS,
|
||||
KC_CALC, KC_P7, KC_P8, KC_P9, KC_PPLS,
|
||||
KC_WSCH, KC_P4, KC_P5, KC_P6,
|
||||
KC_MAIL, KC_P1, KC_P2, KC_P3, KC_PENT,
|
||||
MO(1), KC_P0, KC_PDOT
|
||||
),
|
||||
|
||||
/*
|
||||
* ┌───┬───┬───┬───┐
|
||||
* │Num│ / │ * │-BR│
|
||||
* ┌───┬─┼───┼───┼───┼───┤
|
||||
* │ │ │F7 │F8 │F9 │ │
|
||||
* ├───┼─┼───┼───┼───┤+BR│
|
||||
* │ │ │F4 │F5 │F6 │ │
|
||||
* ├───┼─┼───┼───┼───┼───┤
|
||||
* │ │ │F1 │F2 │F3 │RGB│
|
||||
* ├───┼─┼───┴───┼───┤ │
|
||||
* │FN │ │ │TOG│MOD│
|
||||
* └───┴─┴───────┴───┴───┘
|
||||
*/
|
||||
|
||||
[_LAYER1] = LAYOUT(
|
||||
KC_NLCK, KC_PSLS, KC_PAST, RGB_VAD,
|
||||
KC_TRNS, KC_F7, KC_F8, KC_F9, RGB_VAI,
|
||||
KC_TRNS, KC_F4, KC_F5, KC_F6,
|
||||
KC_TRNS, KC_F1, KC_F2, KC_F3, RGB_MOD,
|
||||
KC_TRNS, KC_TRNS, RGB_TOG
|
||||
)
|
||||
};
|
85
keyboards/skippys_custom_pcs/roopad/keymaps/via/keymap.c
Normal file
85
keyboards/skippys_custom_pcs/roopad/keymaps/via/keymap.c
Normal file
|
@ -0,0 +1,85 @@
|
|||
/*
|
||||
Copyright 2020 <contact@vwolf.be>
|
||||
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
|
||||
|
||||
enum layers {
|
||||
_LAYER0,
|
||||
_LAYER1,
|
||||
_LAYER2,
|
||||
_LAYER3,
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
/*
|
||||
* ┌───┬───┬───┬───┐
|
||||
* │Num│ / │ * │ - │
|
||||
* ┌───┬─┼───┼───┼───┼───┤
|
||||
* │Cal│ │ 7 │ 8 │ 9 │ │
|
||||
* ├───┼─┼───┼───┼───┤ + │
|
||||
* │WWW│ │ 4 │ 5 │ 6 │ │
|
||||
* ├───┼─┼───┼───┼───┼───┤
|
||||
* │Mai│ │ 1 │ 2 │ 3 │ E │
|
||||
* ├───┼─┼───┴───┼───┤ N │
|
||||
* │FN │ │ 0 │ . │ T │
|
||||
* └───┴─┴───────┴───┴───┘
|
||||
*/
|
||||
|
||||
[_LAYER0] = LAYOUT(
|
||||
KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS,
|
||||
KC_CALC, KC_P7, KC_P8, KC_P9, KC_PPLS,
|
||||
KC_WSCH, KC_P4, KC_P5, KC_P6,
|
||||
KC_MAIL, KC_P1, KC_P2, KC_P3, KC_PENT,
|
||||
MO(1), KC_P0, KC_PDOT
|
||||
),
|
||||
|
||||
/*
|
||||
* ┌───┬───┬───┬───┐
|
||||
* │Num│ / │ * │-BR│
|
||||
* ┌───┬─┼───┼───┼───┼───┤
|
||||
* │ │ │F7 │F8 │F9 │ │
|
||||
* ├───┼─┼───┼───┼───┤+BR│
|
||||
* │ │ │F4 │F5 │F6 │ │
|
||||
* ├───┼─┼───┼───┼───┼───┤
|
||||
* │ │ │F1 │F2 │F3 │RGB│
|
||||
* ├───┼─┼───┴───┼───┤ │
|
||||
* │FN │ │ │TOG│MOD│
|
||||
* └───┴─┴───────┴───┴───┘
|
||||
*/
|
||||
|
||||
[_LAYER1] = LAYOUT(
|
||||
KC_NLCK, KC_PSLS, KC_PAST, RGB_VAD,
|
||||
KC_TRNS, KC_F7, KC_F8, KC_F9, RGB_VAI,
|
||||
KC_TRNS, KC_F4, KC_F5, KC_F6,
|
||||
KC_TRNS, KC_F1, KC_F2, KC_F3, RGB_MOD,
|
||||
KC_TRNS, KC_TRNS, RGB_TOG
|
||||
),
|
||||
|
||||
[_LAYER2] = LAYOUT(
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS
|
||||
),
|
||||
|
||||
[_LAYER3] = LAYOUT(
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS
|
||||
)
|
||||
};
|
1
keyboards/skippys_custom_pcs/roopad/keymaps/via/rules.mk
Normal file
1
keyboards/skippys_custom_pcs/roopad/keymaps/via/rules.mk
Normal file
|
@ -0,0 +1 @@
|
|||
VIA_ENABLE = yes
|
22
keyboards/skippys_custom_pcs/roopad/readme.md
Normal file
22
keyboards/skippys_custom_pcs/roopad/readme.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
# kuku65
|
||||
|
||||
The following is the QMK Firmware for the kuku65 Hotswap PCB.
|
||||
|
||||
The PCB features:
|
||||
* QMK & VIA compatibility
|
||||
* Hotswap
|
||||
|
||||
---
|
||||
|
||||
* Keyboard Maintainer: [ToastyStoemp](https://github.com/ToastyStoemp)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make wolf/kuku65: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).
|
||||
|
||||
## Bootloader Enter the bootloader in 3 ways:
|
||||
* **Bootmagic reset**: Hold down the key ESC key and plug in the keyboard (Top Left most switch)
|
||||
* **Physical reset button**: Briefly press the button on the back of the PCB
|
||||
* **Keycode in layout**: Press the B key on layer 1 which is mapped to `RESET`
|
14
keyboards/skippys_custom_pcs/roopad/roopad.c
Normal file
14
keyboards/skippys_custom_pcs/roopad/roopad.c
Normal file
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
Copyright 2020 <contact@vwolf.be>
|
||||
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 "roopad.h"
|
32
keyboards/skippys_custom_pcs/roopad/roopad.h
Normal file
32
keyboards/skippys_custom_pcs/roopad/roopad.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
Copyright 2020 <contact@vwolf.be>
|
||||
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"
|
||||
|
||||
/* RooPad Keymap Definitions */
|
||||
#define LAYOUT( \
|
||||
K01, K02, K03, K04, \
|
||||
K10, K11, K12, K13, K14, \
|
||||
K20, K21, K22, K23, \
|
||||
K30, K31, K32, K33, K34, \
|
||||
K40, K41, K43 \
|
||||
) { \
|
||||
{ KC_NO, K01, K02, K03, K04 }, \
|
||||
{ K10, K11, K12, K13, K14 }, \
|
||||
{ K20, K21, K22, K23, KC_NO }, \
|
||||
{ K30, K31, K32, K33, K34 }, \
|
||||
{ K40, K41, KC_NO, K43, KC_NO } \
|
||||
}
|
24
keyboards/skippys_custom_pcs/roopad/rules.mk
Normal file
24
keyboards/skippys_custom_pcs/roopad/rules.mk
Normal file
|
@ -0,0 +1,24 @@
|
|||
# MCU name
|
||||
MCU = atmega32u4
|
||||
|
||||
# Processor frequency
|
||||
F_CPU = 8000000
|
||||
|
||||
# Bootloader selection
|
||||
BOOTLOADER = atmel-dfu
|
||||
|
||||
# Build Options
|
||||
# change yes to no to disable
|
||||
#
|
||||
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
||||
MOUSEKEY_ENABLE = no # 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
|
||||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
||||
AUDIO_ENABLE = no # Audio output
|
Loading…
Reference in a new issue