[Keyboard] Add support for PaladinPad, Arya pcb and move keyboards by KapCave into their own directory (#14194)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Nachiket Kulkarni <nachiket_kulkarni@apple.com>
This commit is contained in:
		
							parent
							
								
									77e4b07fb5
								
							
						
					
					
						commit
						6779d5b990
					
				
					 65 changed files with 1504 additions and 120 deletions
				
			
		| 
						 | 
				
			
			@ -1,31 +0,0 @@
 | 
			
		|||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include "config_common.h"
 | 
			
		||||
 | 
			
		||||
/* USB Device descriptor parameter */
 | 
			
		||||
#define VENDOR_ID       0xFEED
 | 
			
		||||
#define PRODUCT_ID      0x6061
 | 
			
		||||
#define DEVICE_VER      0x0001
 | 
			
		||||
#define MANUFACTURER    inachie
 | 
			
		||||
#define PRODUCT         GSKT00
 | 
			
		||||
 | 
			
		||||
/* key matrix size */
 | 
			
		||||
#define MATRIX_ROWS 8
 | 
			
		||||
#define MATRIX_COLS 8
 | 
			
		||||
 | 
			
		||||
/* key matrix pins */
 | 
			
		||||
#define MATRIX_ROW_PINS { F1, D1, D2, D4, D6, F7, B0, F4 }
 | 
			
		||||
#define MATRIX_COL_PINS { F6, D7, F5, C7, B4, C6, B6, B5 }
 | 
			
		||||
#define UNUSED_PINS
 | 
			
		||||
 | 
			
		||||
/* COL2ROW or ROW2COL */
 | 
			
		||||
#define DIODE_DIRECTION COL2ROW
 | 
			
		||||
 | 
			
		||||
/* Set 0 if debouncing isn't needed */
 | 
			
		||||
#define DEBOUNCE 5
 | 
			
		||||
 | 
			
		||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
 | 
			
		||||
#define LOCKING_SUPPORT_ENABLE
 | 
			
		||||
 | 
			
		||||
/* Locking resynchronize hack */
 | 
			
		||||
#define LOCKING_RESYNC_ENABLE
 | 
			
		||||
| 
						 | 
				
			
			@ -1,2 +0,0 @@
 | 
			
		|||
#include "gskt00.h"
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1,17 +0,0 @@
 | 
			
		|||
# GSKT-00 PCB
 | 
			
		||||
 | 
			
		||||
Firmware for the GSKT-00 PCB
 | 
			
		||||
 | 
			
		||||
Keyboard Maintainer: [/u/iNachie](https://github.com/nachie)  
 | 
			
		||||
Hardware Supported: GSKT-00 PCB  
 | 
			
		||||
Hardware Availability: [/u/iNachie](https://www.reddit.com/user/inachie/)
 | 
			
		||||
 | 
			
		||||
Make example for this keyboard (after setting up your build environment):
 | 
			
		||||
 | 
			
		||||
    make gskt00:default
 | 
			
		||||
 | 
			
		||||
Or to make and flash:
 | 
			
		||||
 | 
			
		||||
    make gskt00:default:dfu
 | 
			
		||||
 | 
			
		||||
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).
 | 
			
		||||
							
								
								
									
										27
									
								
								keyboards/kapcave/arya/arya.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								keyboards/kapcave/arya/arya.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,27 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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 "arya.h"
 | 
			
		||||
 | 
			
		||||
bool encoder_update_kb(uint8_t index, bool clockwise) {
 | 
			
		||||
    if (!encoder_update_user(index, clockwise)) { return false; }
 | 
			
		||||
    if (clockwise) {
 | 
			
		||||
        tap_code(KC_VOLU);
 | 
			
		||||
    } else {
 | 
			
		||||
        tap_code(KC_VOLD);
 | 
			
		||||
    }
 | 
			
		||||
    return true;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										43
									
								
								keyboards/kapcave/arya/arya.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								keyboards/kapcave/arya/arya.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,43 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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_alice_split_bs( \
 | 
			
		||||
  K81,   K36, K37, K46, K47, K56, K57, K66,      K67, K76, K77, K06, K07, K17, K26, K27, \
 | 
			
		||||
  K80,   K34, K35, K44, K45, K54, K55,      K64, K65, K75, K05, K15, K16, K25, K24,      \
 | 
			
		||||
  K82,   K32, K33, K43, K52, K53, K63,      K73, K74, K03, K04, K13, K14,      K23,      \
 | 
			
		||||
         K31, K41, K42, K51, K61, K62,      K71, K72, K01, K02, K11, K12, K21, K22,      \
 | 
			
		||||
         K30,      K40,      K50, K60,           K00,      K10,                K20       \
 | 
			
		||||
) \
 | 
			
		||||
{ \
 | 
			
		||||
  { K00  , K01  , K02  , K03  , K04  , K05  , K06  , K07 }, \
 | 
			
		||||
  { K10  , K11  , K12  , K13  , K14  , K15  , K16  , K17 }, \
 | 
			
		||||
  { K20  , K21  , K22  , K23  , K24  , K25  , K26  , K27 }, \
 | 
			
		||||
  { K30  , K31  , K32  , K33  , K34  , K35  , K36  , K37 }, \
 | 
			
		||||
  { K40  , K41  , K42  , K43  , K44  , K45  , K46  , K47 }, \
 | 
			
		||||
  { K50  , K51  , K52  , K53  , K54  , K55  , K56  , K57 }, \
 | 
			
		||||
  { K60  , K61  , K62  , K63  , K64  , K65  , K66  , K67 }, \
 | 
			
		||||
  { KC_NO  , K71  , K72  , K73  , K74  , K75  , K76  , K77 }, \
 | 
			
		||||
  { K80  , K81  , K82  , KC_NO, KC_NO, KC_NO, KC_NO, KC_NO}  \
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#define LAYOUT_all LAYOUT_alice_split_bs
 | 
			
		||||
							
								
								
									
										25
									
								
								keyboards/kapcave/arya/chconf.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								keyboards/kapcave/arya/chconf.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,25 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
#define CH_CFG_ST_RESOLUTION 16
 | 
			
		||||
 | 
			
		||||
#define CH_CFG_INTERVALS_SIZE 16
 | 
			
		||||
 | 
			
		||||
#include_next <chconf.h>
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										68
									
								
								keyboards/kapcave/arya/config.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										68
									
								
								keyboards/kapcave/arya/config.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,68 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
/* USB Device descriptor parameter */
 | 
			
		||||
#define VENDOR_ID       0x4B43
 | 
			
		||||
#define PRODUCT_ID      0x4152
 | 
			
		||||
#define DEVICE_VER      0x0001
 | 
			
		||||
#define MANUFACTURER    KapCave
 | 
			
		||||
#define PRODUCT         Arya
 | 
			
		||||
 | 
			
		||||
/* key matrix size */
 | 
			
		||||
#define MATRIX_ROWS 9
 | 
			
		||||
#define MATRIX_COLS 8
 | 
			
		||||
 | 
			
		||||
#define MATRIX_COL_PINS { B0, B5, B4, B2, C13, F1, F0, A14}
 | 
			
		||||
#define MATRIX_ROW_PINS { B8, A13, B1, A15, B9, B10, B11, A0, A8 }
 | 
			
		||||
#define DIODE_DIRECTION COL2ROW
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/* Set 0 if debouncing isn't needed */
 | 
			
		||||
#define DEBOUNCE    5
 | 
			
		||||
 | 
			
		||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
 | 
			
		||||
#define LOCKING_SUPPORT_ENABLE
 | 
			
		||||
/* Locking resynchronize hack */
 | 
			
		||||
#define LOCKING_RESYNC_ENABLE
 | 
			
		||||
 | 
			
		||||
#define ENCODERS_PAD_A { B12, B14, C15 }
 | 
			
		||||
#define ENCODERS_PAD_B { B13, B15, C14 }
 | 
			
		||||
 | 
			
		||||
#define ENCODER_RESOLUTION 2
 | 
			
		||||
#define TAP_CODE_DELAY 25 
 | 
			
		||||
 | 
			
		||||
#define DYNAMIC_KEYMAP_LAYER_COUNT 3
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * Feature disable options
 | 
			
		||||
 *  These options are also useful to firmware size reduction.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
/* disable debug print */
 | 
			
		||||
//#define NO_DEBUG
 | 
			
		||||
 | 
			
		||||
/* disable print */
 | 
			
		||||
//#define NO_PRINT
 | 
			
		||||
 | 
			
		||||
/* disable action features */
 | 
			
		||||
//#define NO_ACTION_LAYER
 | 
			
		||||
//#define NO_ACTION_TAPPING
 | 
			
		||||
//#define NO_ACTION_ONESHOT
 | 
			
		||||
//#define NO_ACTION_MACRO
 | 
			
		||||
//#define NO_ACTION_FUNCTION
 | 
			
		||||
							
								
								
									
										23
									
								
								keyboards/kapcave/arya/halconf.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								keyboards/kapcave/arya/halconf.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,23 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
#define HAL_USE_PWM TRUE
 | 
			
		||||
 | 
			
		||||
#include_next <halconf.h>
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										77
									
								
								keyboards/kapcave/arya/info.json
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										77
									
								
								keyboards/kapcave/arya/info.json
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,77 @@
 | 
			
		|||
{
 | 
			
		||||
    "keyboard_name": "Arya", 
 | 
			
		||||
    "url": "https://kapcave.com/products/arya", 
 | 
			
		||||
    "maintainer": "nachie", 
 | 
			
		||||
    "layouts": {
 | 
			
		||||
        "LAYOUT": {
 | 
			
		||||
            "layout": [
 | 
			
		||||
                {"label":"Esc", "x":2.75, "y":5.9},
 | 
			
		||||
                {"label":"\u00ac", "x":4, "y":6.0},
 | 
			
		||||
                {"label":"!", "x":5, "y":6.0},
 | 
			
		||||
                {"label":"\"", "x":6, "y":6.0},
 | 
			
		||||
                {"label":"_", "x":15.25, "y":6.0},
 | 
			
		||||
                {"label":"+", "x":16.25, "y":6.0},
 | 
			
		||||
                {"label":"", "x":17.25, "y":6.0},
 | 
			
		||||
                {"label":"", "x":18.25, "y":6.0},
 | 
			
		||||
                {"label":"Pg Up", "x":2.5, "y":6.9},
 | 
			
		||||
                {"label":"Tab", "x":3.75, "y":7.0, "w":1.5},
 | 
			
		||||
                {"label":"Q", "x":5.25, "y":7.0},
 | 
			
		||||
                {"label":"P", "x":15, "y":7.0},
 | 
			
		||||
                {"label":"{", "x":16, "y":7.0},
 | 
			
		||||
                {"label":"}", "x":17, "y":7.0},
 | 
			
		||||
                {"label":"|", "x":18, "y":7.0, "w":1.5},
 | 
			
		||||
                {"label":"Pg Dn", "x":2.25, "y":7.9},
 | 
			
		||||
                {"label":"Caps Lock", "x":3.5, "y":8.0, "w":1.75},
 | 
			
		||||
                {"label":"A", "x":5.25, "y":8.0},
 | 
			
		||||
                {"label":":", "x":15.5, "y":8.0},
 | 
			
		||||
                {"label":"\"", "x":16.5, "y":8.0},
 | 
			
		||||
                {"label":"Enter", "x":17.5, "y":8.0, "w":2.25},
 | 
			
		||||
                {"label":"Shift", "x":3.25, "y":9.0, "w":2.25},
 | 
			
		||||
                {"label":"Z", "x":5.5, "y":9.0},
 | 
			
		||||
                {"label":">", "x":15.25, "y":9.0},
 | 
			
		||||
                {"label":"?", "x":16.25, "y":9.0},
 | 
			
		||||
                {"label":"Shift", "x":17.25, "y":9.0, "w":1.75},
 | 
			
		||||
                {"label":"Fn", "x":19, "y":9.0},
 | 
			
		||||
                {"label":"Ctrl", "x":3.25, "y":10.0, "w":1.5},
 | 
			
		||||
                {"label":"Ctrl", "x":18.25, "y":10.0, "w":1.5},
 | 
			
		||||
                {"label":"\u00a3", "x":8.25, "y":4.5},
 | 
			
		||||
                {"label":"$", "x":9.25, "y":4.5},
 | 
			
		||||
                {"label":"%", "x":10.25, "y":4.5},
 | 
			
		||||
                {"label":"^", "x":11.25, "y":4.5},
 | 
			
		||||
                {"label":"W", "x":7.75, "y":5.5},
 | 
			
		||||
                {"label":"E", "x":8.75, "y":5.5},
 | 
			
		||||
                {"label":"R", "x":9.75, "y":5.5},
 | 
			
		||||
                {"label":"T", "x":10.75, "y":5.5},
 | 
			
		||||
                {"label":"S", "x":8, "y":6.5},
 | 
			
		||||
                {"label":"D", "x":9, "y":6.5},
 | 
			
		||||
                {"label":"F", "x":10, "y":6.5},
 | 
			
		||||
                {"label":"G", "x":11, "y":6.5},
 | 
			
		||||
                {"label":"X", "x":8.5, "y":7.5},
 | 
			
		||||
                {"label":"C", "x":9.5, "y":7.5},
 | 
			
		||||
                {"label":"V", "x":10.5, "y":7.5},
 | 
			
		||||
                {"label":"B", "x":11.5, "y":7.5},
 | 
			
		||||
                {"label":"Alt", "x":8.25, "y":8.5, "w":1.5},
 | 
			
		||||
                {"label":"", "x":9.75, "y":8.5, "w":2},
 | 
			
		||||
                {"label":"Fn", "x":11.75, "y":8.5, "w":1.25},
 | 
			
		||||
                {"label":"&", "x":9.5, "y":9.0},
 | 
			
		||||
                {"label":"*", "x":10.5, "y":9.0},
 | 
			
		||||
                {"label":"(", "x":11.5, "y":9.0},
 | 
			
		||||
                {"label":")", "x":12.5, "y":9.0},
 | 
			
		||||
                {"label":"Y", "x":9, "y":10.0},
 | 
			
		||||
                {"label":"U", "x":10, "y":10.0},
 | 
			
		||||
                {"label":"I", "x":11, "y":10.0},
 | 
			
		||||
                {"label":"O", "x":12, "y":10.0},
 | 
			
		||||
                {"label":"H", "x":9.25, "y":11.0},
 | 
			
		||||
                {"label":"J", "x":10.25, "y":11.0},
 | 
			
		||||
                {"label":"K", "x":11.25, "y":11.0},
 | 
			
		||||
                {"label":"L", "x":12.25, "y":11.0},
 | 
			
		||||
                {"label":"Fn", "x":8.75, "y":12.0},
 | 
			
		||||
                {"label":"N", "x":9.75, "y":12.0},
 | 
			
		||||
                {"label":"M", "x":10.75, "y":12.0},
 | 
			
		||||
                {"label":"<", "x":11.75, "y":12.0},
 | 
			
		||||
                {"label":"Shift", "x":8.75, "y":13.0, "w":2.75},
 | 
			
		||||
                {"label":"Alt", "x":11.5, "y":13.0, "w":1.5}
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										34
									
								
								keyboards/kapcave/arya/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								keyboards/kapcave/arya/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,34 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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] = {
 | 
			
		||||
    LAYOUT_alice_split_bs(
 | 
			
		||||
        KC_ESC,     KC_GESC, KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    KC_MINS, KC_EQL,  KC_GRV,  KC_BSLS,
 | 
			
		||||
        KC_PGUP,    KC_TAB,  KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,    KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,    KC_LBRC, KC_RBRC, KC_BSPC,
 | 
			
		||||
        KC_PGDN,    KC_LCTL, KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_QUOT,          KC_ENT,
 | 
			
		||||
                    KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT, MO(1),
 | 
			
		||||
                    KC_LGUI,          KC_LALT,          KC_SPC,  KC_LGUI,          KC_SPC,           KC_RALT,                            KC_RCTL
 | 
			
		||||
    ),
 | 
			
		||||
    LAYOUT_alice_split_bs(
 | 
			
		||||
        _______,    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
        _______,    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_UP  , _______, _______,
 | 
			
		||||
        _______,    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_RGHT,          _______,
 | 
			
		||||
                    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DOWN, _______, _______,
 | 
			
		||||
                    _______,          _______,          _______, _______,          _______,          _______,                            _______
 | 
			
		||||
    ),
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/arya/keymaps/default/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/arya/keymaps/default/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
The default layout for the KapCave Arya
 | 
			
		||||
							
								
								
									
										56
									
								
								keyboards/kapcave/arya/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										56
									
								
								keyboards/kapcave/arya/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,56 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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 layer_names {
 | 
			
		||||
    _BASE, // Default Layer
 | 
			
		||||
    _FN, // Fn Layer 1
 | 
			
		||||
    _FN2, // Fn Layer 2
 | 
			
		||||
    _FN3 // Fn Layer 3
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
    /* QWERTY */
 | 
			
		||||
	[_BASE] = LAYOUT_alice_split_bs(
 | 
			
		||||
        KC_ESC,     KC_GESC, KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    KC_MINS, KC_EQL,  KC_GRV,  KC_BSLS,
 | 
			
		||||
        KC_PGUP,    KC_TAB,  KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,    KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,    KC_LBRC, KC_RBRC, KC_BSPC,
 | 
			
		||||
        KC_PGDN,    KC_LCTL, KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_QUOT,          KC_ENT,
 | 
			
		||||
                    KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT, MO(1),
 | 
			
		||||
                    KC_LGUI,          KC_LALT,          KC_SPC,  KC_LGUI,          KC_SPC,           KC_RALT,                            KC_RCTL
 | 
			
		||||
    ),  
 | 
			
		||||
 | 
			
		||||
    /* FUNCTION */
 | 
			
		||||
	[_FN] = LAYOUT_alice_split_bs(
 | 
			
		||||
        _______,    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
        _______,    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_UP  , _______, _______,
 | 
			
		||||
        _______,    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_RGHT,          _______,
 | 
			
		||||
                    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DOWN, _______, _______,
 | 
			
		||||
                    _______,          _______,          _______, _______,          _______,          _______,                            _______
 | 
			
		||||
    ),
 | 
			
		||||
 | 
			
		||||
	[_FN2] = LAYOUT_alice_split_bs(
 | 
			
		||||
        _______,    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
        _______,    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______  , _______, _______,
 | 
			
		||||
        _______,    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______,
 | 
			
		||||
                    _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
                    _______,          _______,          _______, _______,          _______,          _______,                            _______
 | 
			
		||||
    ),
 | 
			
		||||
	
 | 
			
		||||
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/arya/keymaps/via/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/arya/keymaps/via/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
The VIA Keymap for the KapCave Arya
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/arya/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/arya/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
VIA_ENABLE = yes
 | 
			
		||||
							
								
								
									
										33
									
								
								keyboards/kapcave/arya/mcuconf.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								keyboards/kapcave/arya/mcuconf.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,33 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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_next <mcuconf.h>
 | 
			
		||||
 | 
			
		||||
/* enable TIM1, used for backlight PWM */
 | 
			
		||||
#undef STM32_PWM_USE_TIM1
 | 
			
		||||
#define STM32_PWM_USE_TIM1                  TRUE
 | 
			
		||||
 | 
			
		||||
/* enable TIM2, used for underglow PWM driver */
 | 
			
		||||
#undef STM32_PWM_USE_TIM2
 | 
			
		||||
#define STM32_PWM_USE_TIM2                  TRUE
 | 
			
		||||
 | 
			
		||||
/* move system from TIM2 (default) to TIM3 (since TIM2 is needed for underglow) */
 | 
			
		||||
#undef STM32_PWM_USE_TIM3
 | 
			
		||||
#define STM32_PWM_USE_TIM3                  FALSE
 | 
			
		||||
#undef STM32_ST_USE_TIMER
 | 
			
		||||
#define STM32_ST_USE_TIMER                  3
 | 
			
		||||
							
								
								
									
										23
									
								
								keyboards/kapcave/arya/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								keyboards/kapcave/arya/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,23 @@
 | 
			
		|||
# KapCave Arya
 | 
			
		||||
 | 
			
		||||
Firmware for the KapCave Arya Keyboard
 | 
			
		||||
 | 
			
		||||
* Keyboard Maintainer: [KapCave](https://github.com/nachie)
 | 
			
		||||
* Hardware Supported: Arya PCB
 | 
			
		||||
* Hardware Availability: [KapCave](https://kapcave.com/products/arya-pcb)
 | 
			
		||||
 | 
			
		||||
Make example for this keyboard (after setting up your build environment):
 | 
			
		||||
 | 
			
		||||
    make kapcave/arya:default
 | 
			
		||||
 | 
			
		||||
Or to make and flash:
 | 
			
		||||
 | 
			
		||||
    make kapcave/arya:default:flash
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
* **Bootmagic reset**: Hold down Right Space key and plug in the keyboard
 | 
			
		||||
* **Physical reset button**: Briefly press the button labeled "SW_RST1" on the back of the PCB
 | 
			
		||||
							
								
								
									
										25
									
								
								keyboards/kapcave/arya/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								keyboards/kapcave/arya/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,25 @@
 | 
			
		|||
# MCU name
 | 
			
		||||
MCU = STM32F072
 | 
			
		||||
 | 
			
		||||
# Bootloader selection
 | 
			
		||||
BOOTLOADER = stm32-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 = no        # Enable keyboard RGB underglow
 | 
			
		||||
AUDIO_ENABLE = no           # Audio output
 | 
			
		||||
ENCODER_ENABLE = yes
 | 
			
		||||
 | 
			
		||||
# Enter lower-power sleep mode when on the ChibiOS idle thread
 | 
			
		||||
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
 | 
			
		||||
							
								
								
									
										52
									
								
								keyboards/kapcave/gskt00/config.h
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										52
									
								
								keyboards/kapcave/gskt00/config.h
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,52 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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       0x4B43
 | 
			
		||||
#define PRODUCT_ID      0x6061
 | 
			
		||||
#define DEVICE_VER      0x0001
 | 
			
		||||
#define MANUFACTURER    KapCave
 | 
			
		||||
#define PRODUCT         GSKT00
 | 
			
		||||
 | 
			
		||||
/* key matrix size */
 | 
			
		||||
#define MATRIX_ROWS 8
 | 
			
		||||
#define MATRIX_COLS 8
 | 
			
		||||
 | 
			
		||||
/* key matrix pins */
 | 
			
		||||
#define MATRIX_ROW_PINS { F1, D1, D2, D4, D6, F7, B0, F4 }
 | 
			
		||||
#define MATRIX_COL_PINS { F6, D7, F5, C7, B4, C6, B6, B5 }
 | 
			
		||||
#define UNUSED_PINS
 | 
			
		||||
 | 
			
		||||
#define BOOTMAGIC_LITE_ROW 3
 | 
			
		||||
#define BOOTMAGIC_LITE_COLUMN 6
 | 
			
		||||
 | 
			
		||||
/* COL2ROW or ROW2COL */
 | 
			
		||||
#define DIODE_DIRECTION COL2ROW
 | 
			
		||||
 | 
			
		||||
/* Set 0 if debouncing isn't needed */
 | 
			
		||||
#define DEBOUNCE 5
 | 
			
		||||
 | 
			
		||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
 | 
			
		||||
#define LOCKING_SUPPORT_ENABLE
 | 
			
		||||
 | 
			
		||||
/* Locking resynchronize hack */
 | 
			
		||||
#define LOCKING_RESYNC_ENABLE
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										18
									
								
								keyboards/kapcave/gskt00/gskt00.c
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										18
									
								
								keyboards/kapcave/gskt00/gskt00.c
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,18 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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 "gskt00.h"
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1,3 +1,20 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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"
 | 
			
		||||
| 
						 | 
				
			
			@ -1,6 +1,6 @@
 | 
			
		|||
{
 | 
			
		||||
  "keyboard_name": "gskt00",
 | 
			
		||||
  "url": "",
 | 
			
		||||
  "keyboard_name": "GSKT-00",
 | 
			
		||||
  "url": "https://kapcave.com/products/gskt-00-pcb-usb-c",
 | 
			
		||||
  "maintainer": "nachie",
 | 
			
		||||
  "layouts": {
 | 
			
		||||
    "LAYOUT_60_ansi_tsangan": {
 | 
			
		||||
							
								
								
									
										39
									
								
								keyboards/kapcave/gskt00/keymaps/default-poly/config.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								keyboards/kapcave/gskt00/keymaps/default-poly/config.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,39 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
#define ENCODERS_PAD_A { D5 }
 | 
			
		||||
#define ENCODERS_PAD_B { D3 }
 | 
			
		||||
 | 
			
		||||
#define RGB_DI_PIN D0
 | 
			
		||||
#ifdef RGB_DI_PIN
 | 
			
		||||
#define RGBLIGHT_EFFECT_BREATHING
 | 
			
		||||
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
 | 
			
		||||
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
 | 
			
		||||
#define RGBLIGHT_EFFECT_SNAKE
 | 
			
		||||
#define RGBLIGHT_EFFECT_KNIGHT
 | 
			
		||||
#define RGBLIGHT_EFFECT_CHRISTMAS
 | 
			
		||||
#define RGBLIGHT_EFFECT_STATIC_GRADIENT
 | 
			
		||||
#define RGBLIGHT_EFFECT_RGB_TEST
 | 
			
		||||
#define RGBLIGHT_EFFECT_ALTERNATING
 | 
			
		||||
#define RGBLIGHT_EFFECT_TWINKLE
 | 
			
		||||
#define RGBLED_NUM 14
 | 
			
		||||
#define RGBLIGHT_HUE_STEP 10
 | 
			
		||||
#define RGBLIGHT_SAT_STEP 17
 | 
			
		||||
#define RGBLIGHT_VAL_STEP 12
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										70
									
								
								keyboards/kapcave/gskt00/keymaps/default-poly/keymap.c
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										70
									
								
								keyboards/kapcave/gskt00/keymaps/default-poly/keymap.c
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,70 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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] = {
 | 
			
		||||
 | 
			
		||||
    /* QWERTY */
 | 
			
		||||
	LAYOUT_all(
 | 
			
		||||
		KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_GRV, KC_BSLS,
 | 
			
		||||
		KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC,
 | 
			
		||||
		MO(3), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
 | 
			
		||||
		KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LSFT, MO(3),
 | 
			
		||||
		KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT, KC_LCTL), 
 | 
			
		||||
 | 
			
		||||
    /* DVORAK */
 | 
			
		||||
	LAYOUT_all(
 | 
			
		||||
		KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_LBRC, KC_RBRC, KC_GRV, KC_BSLS, 
 | 
			
		||||
		KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH, KC_EQL, KC_BSPC,  
 | 
			
		||||
		MO(3), KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS, KC_ENT,
 | 
			
		||||
		KC_LSFT, KC_NUBS, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_LSFT, MO(3),
 | 
			
		||||
		KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT, KC_RCTL), 
 | 
			
		||||
 | 
			
		||||
    /* COLEMAK */
 | 
			
		||||
	LAYOUT_all(
 | 
			
		||||
		KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_GRV, KC_BSLS,
 | 
			
		||||
		KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_LBRC, KC_RBRC, KC_BSPC,
 | 
			
		||||
		MO(3), KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, KC_ENT, 
 | 
			
		||||
		KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LSFT, MO(3),
 | 
			
		||||
		KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT, KC_RCTL), 
 | 
			
		||||
 | 
			
		||||
    /* FUNCTION */
 | 
			
		||||
	LAYOUT_all(
 | 
			
		||||
		KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_TRNS, KC_TRNS,
 | 
			
		||||
		KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_TRNS, KC_TRNS, KC_PGUP, KC_UP, KC_PGDN, KC_PSCR, KC_SLCK, KC_PAUS, KC_BSPC,
 | 
			
		||||
		KC_TRNS, KC_TRNS, KC_MPRV, KC_MPLY, KC_MNXT, KC_TRNS, KC_HOME, KC_LEFT, KC_DOWN, KC_RGHT, KC_TRNS, KC_TRNS, KC_TRNS,
 | 
			
		||||
		KC_CAPS, KC_TRNS, KC_TRNS, KC_MUTE, KC_VOLD, KC_VOLU, KC_TRNS, KC_END, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
 | 
			
		||||
		KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_MOD, KC_TRNS, RGB_TOG)
 | 
			
		||||
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
bool encoder_update_user(uint8_t index, bool clockwise) {
 | 
			
		||||
  if (index == 0) { /* First encoder */
 | 
			
		||||
    if (clockwise) {
 | 
			
		||||
      tap_code(KC_PGDN);
 | 
			
		||||
    } else {
 | 
			
		||||
      tap_code(KC_PGUP);
 | 
			
		||||
    }
 | 
			
		||||
  } else if (index == 1) { /* Second encoder */
 | 
			
		||||
    if (clockwise) {
 | 
			
		||||
      tap_code(KC_UP);
 | 
			
		||||
    } else {
 | 
			
		||||
      tap_code(KC_DOWN);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  return true;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/gskt00/keymaps/default-poly/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/gskt00/keymaps/default-poly/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
There was a private run of Polycarbonate cases. This keymap supports the underglow PCBs that shipped out with those, in addition to future underglow pcbs. These PCBs also had encoder support which is reflected in the keymap.
 | 
			
		||||
							
								
								
									
										2
									
								
								keyboards/kapcave/gskt00/keymaps/default-poly/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								keyboards/kapcave/gskt00/keymaps/default-poly/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,2 @@
 | 
			
		|||
RGBLIGHT_ENABLE = yes
 | 
			
		||||
ENCODER_ENABLE = yes
 | 
			
		||||
| 
						 | 
				
			
			@ -1,3 +1,19 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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] = {
 | 
			
		||||
| 
						 | 
				
			
			@ -10,22 +26,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		|||
		KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LSFT, MO(3),
 | 
			
		||||
		KC_LGUI, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(3)), 
 | 
			
		||||
 | 
			
		||||
    /* DVORAK */
 | 
			
		||||
	LAYOUT_all(
 | 
			
		||||
		KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_LBRC, KC_RBRC, KC_GRV, KC_BSLS, 
 | 
			
		||||
		KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH, KC_EQL, KC_BSPC,  
 | 
			
		||||
		MO(3), KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS, KC_ENT,
 | 
			
		||||
		KC_LSFT, KC_NUBS, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_LSFT, MO(3),
 | 
			
		||||
		KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT, KC_RCTL), 
 | 
			
		||||
 | 
			
		||||
    /* COLEMAK */
 | 
			
		||||
	LAYOUT_all(
 | 
			
		||||
		KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_GRV, KC_BSLS,
 | 
			
		||||
		KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_LBRC, KC_RBRC, KC_BSPC,
 | 
			
		||||
		MO(3), KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, KC_ENT, 
 | 
			
		||||
		KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LSFT, MO(3),
 | 
			
		||||
		KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT, KC_RCTL), 
 | 
			
		||||
 | 
			
		||||
    /* FUNCTION */
 | 
			
		||||
	LAYOUT_all(
 | 
			
		||||
		KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_INS, KC_DEL,
 | 
			
		||||
| 
						 | 
				
			
			@ -35,3 +35,4 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		|||
		KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_MOD, KC_TRNS, RGB_TOG)
 | 
			
		||||
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/gskt00/keymaps/default/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/gskt00/keymaps/default/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
The default keymap for the GSKT-00 PCB.
 | 
			
		||||
							
								
								
									
										57
									
								
								keyboards/kapcave/gskt00/keymaps/via/keymap.c
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										57
									
								
								keyboards/kapcave/gskt00/keymaps/via/keymap.c
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,57 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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 layer_names {
 | 
			
		||||
    _BASE, // Default Layer
 | 
			
		||||
    _FN, // Fn Layer 1
 | 
			
		||||
    _FN2, // Fn Layer 2
 | 
			
		||||
    _FN3 // Fn Layer 3
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
    /* QWERTY */
 | 
			
		||||
	[_BASE] = LAYOUT_all(
 | 
			
		||||
		KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_GRV, KC_BSPC,
 | 
			
		||||
		KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS,
 | 
			
		||||
		KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
 | 
			
		||||
		KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LSFT, MO(3),
 | 
			
		||||
		KC_LGUI, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(3)), 
 | 
			
		||||
 | 
			
		||||
    /* FUNCTION */
 | 
			
		||||
	[_FN] = LAYOUT_all(
 | 
			
		||||
		KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_INS, KC_DEL,
 | 
			
		||||
		KC_CAPS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_SLCK, KC_PAUS, KC_UP, KC_PAUS, KC_DEL,
 | 
			
		||||
		KC_TRNS, KC_VOLD, KC_VOLU, KC_MUTE, KC_EJCT, KC_TRNS, KC_TRNS, KC_TRNS, KC_HOME, KC_PGUP, KC_LEFT, KC_RGHT, KC_TRNS,
 | 
			
		||||
		KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_END, KC_PGDN, KC_DOWN, KC_TRNS, KC_TRNS,
 | 
			
		||||
		KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
 | 
			
		||||
 | 
			
		||||
	[_FN2] = LAYOUT_all(
 | 
			
		||||
		_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
		_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
		_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
		_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
		_______, _______, _______, _______, _______, _______, _______),
 | 
			
		||||
	
 | 
			
		||||
	[_FN3] = LAYOUT_all(
 | 
			
		||||
		_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
		_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
		_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
		_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
		_______, _______, _______, _______, _______, _______, _______)
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/gskt00/keymaps/via/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/gskt00/keymaps/via/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
The via keymap for the GSKT-00 PCB.
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/gskt00/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/gskt00/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
VIA_ENABLE = yes
 | 
			
		||||
							
								
								
									
										23
									
								
								keyboards/kapcave/gskt00/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								keyboards/kapcave/gskt00/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,23 @@
 | 
			
		|||
# GSKT-00 PCB
 | 
			
		||||
 | 
			
		||||
Firmware for the GSKT-00 PCB
 | 
			
		||||
 | 
			
		||||
* Keyboard Maintainer: [KapCave](https://github.com/nachie)
 | 
			
		||||
* Hardware Supported: GSKT-00 PCB
 | 
			
		||||
* Hardware Availability: [KapCave](https://kapcave.com/products/gskt-00-pcb-usb-c)
 | 
			
		||||
 | 
			
		||||
Make example for this keyboard (after setting up your build environment):
 | 
			
		||||
 | 
			
		||||
    make kapcave/gskt00:default
 | 
			
		||||
 | 
			
		||||
Or to make and flash:
 | 
			
		||||
 | 
			
		||||
    make kapcave/gskt00:default:flash
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
* **Bootmagic reset**: Hold down ESC key (top left) and plug in the keyboard
 | 
			
		||||
* **Physical reset button**: Briefly press the button labeled "SW_RST1" on the back of the PCB
 | 
			
		||||
| 
						 | 
				
			
			@ -7,7 +7,7 @@ BOOTLOADER = atmel-dfu
 | 
			
		|||
# Build Options
 | 
			
		||||
#   comment out to disable the options.
 | 
			
		||||
#
 | 
			
		||||
BOOTMAGIC_ENABLE = lite     # Enable Bootmagic Lite
 | 
			
		||||
BOOTMAGIC_ENABLE = yes     # Enable Bootmagic Lite
 | 
			
		||||
MOUSEKEY_ENABLE = yes	# Mouse keys
 | 
			
		||||
EXTRAKEY_ENABLE = yes	# Audio control and System control
 | 
			
		||||
CONSOLE_ENABLE = yes	# Console for debug
 | 
			
		||||
| 
						 | 
				
			
			@ -1,18 +1,38 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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       0xFEED
 | 
			
		||||
#define PRODUCT_ID      0x6060
 | 
			
		||||
#define VENDOR_ID       0x4B43
 | 
			
		||||
#define PRODUCT_ID      0x5036
 | 
			
		||||
#define DEVICE_VER      0x0001
 | 
			
		||||
#define MANUFACTURER    inachie
 | 
			
		||||
#define MANUFACTURER    KapCave
 | 
			
		||||
#define PRODUCT         paladin64
 | 
			
		||||
 | 
			
		||||
/* key matrix size */
 | 
			
		||||
#define MATRIX_ROWS 8
 | 
			
		||||
#define MATRIX_COLS 8
 | 
			
		||||
 | 
			
		||||
#define BOOTMAGIC_LITE_ROW 3
 | 
			
		||||
#define BOOTMAGIC_LITE_COLUMN 6
 | 
			
		||||
 | 
			
		||||
/* Only required if you add in a trackpoint hardware to the pcb */
 | 
			
		||||
#ifdef PS2_USE_USART
 | 
			
		||||
    #define PS2_CLOCK_PORT  PORTD
 | 
			
		||||
    #define PS2_CLOCK_PIN   PIND
 | 
			
		||||
| 
						 | 
				
			
			@ -1,7 +1,7 @@
 | 
			
		|||
{
 | 
			
		||||
    "keyboard_name": "paladin64",
 | 
			
		||||
    "url": "",
 | 
			
		||||
    "maintainer": "qmk",
 | 
			
		||||
    "keyboard_name": "Paladin64",
 | 
			
		||||
    "url": "https://kapcave.com/products/paladin64-pcb",
 | 
			
		||||
    "maintainer": "nachie",
 | 
			
		||||
    "layouts": {
 | 
			
		||||
        "LAYOUT_all": {
 | 
			
		||||
          "layout": [{"label":"~", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"x":13, "y":0}, {"x":14, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"|", "x":13.5, "y":1, "w":1.5}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"label":"Enter", "x":12.75, "y":2, "w":2.25}, {"label":"Shift", "x":0, "y":3, "w":1.25}, {"x":1.25, "y":3}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":1.75}, {"x":14, "y":3}, {"label":"Ctrl", "x":0, "y":4, "w":1.25}, {"label":"Win", "x":1.25, "y":4, "w":1.25}, {"label":"Alt", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":6.25}, {"label":"Alt", "x":10, "y":4, "w":1.25}, {"label":"Win", "x":11.25, "y":4, "w":1.25}, {"label":"Menu", "x":12.5, "y":4, "w":1.25}, {"label":"Ctrl", "x":13.75, "y":4, "w":1.25}]
 | 
			
		||||
| 
						 | 
				
			
			@ -1,3 +1,19 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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] = {
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/paladin64/keymaps/default/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/paladin64/keymaps/default/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
The default keymap for Paladin64
 | 
			
		||||
							
								
								
									
										59
									
								
								keyboards/kapcave/paladin64/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										59
									
								
								keyboards/kapcave/paladin64/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,59 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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 layer_names {
 | 
			
		||||
    _BASE, // Default Layer
 | 
			
		||||
    _FN, // Fn Layer 1
 | 
			
		||||
    _FN2, // Fn Layer 2
 | 
			
		||||
    _FN3 // Fn Layer 3
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
    /* QWERTY */
 | 
			
		||||
	[_BASE] = LAYOUT_all(
 | 
			
		||||
		KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_GRV, KC_BSLS,
 | 
			
		||||
		KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC,
 | 
			
		||||
		MO(3), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
 | 
			
		||||
		KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LSFT, MO(3),
 | 
			
		||||
		KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_APP, KC_RGUI, KC_RALT, KC_LCTL),  
 | 
			
		||||
 | 
			
		||||
    /* FUNCTION */
 | 
			
		||||
	[_FN] = LAYOUT_all(
 | 
			
		||||
		KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_TRNS, KC_TRNS,
 | 
			
		||||
		KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_TRNS, KC_TRNS, KC_PGUP, KC_UP, KC_PGDN, KC_PSCR, KC_SLCK, KC_PAUS, KC_BSPC,
 | 
			
		||||
		KC_TRNS, KC_TRNS, KC_MPRV, KC_MPLY, KC_MNXT, KC_TRNS, KC_HOME, KC_LEFT, KC_DOWN, KC_RGHT, KC_TRNS, KC_TRNS, KC_TRNS,
 | 
			
		||||
		KC_CAPS, KC_TRNS, KC_TRNS, KC_MUTE, KC_VOLD, KC_VOLU, KC_TRNS, KC_END, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
 | 
			
		||||
		KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_MOD, KC_TRNS, RGB_TOG),
 | 
			
		||||
 | 
			
		||||
	[_FN2] = LAYOUT_all(
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______),
 | 
			
		||||
	
 | 
			
		||||
	[_FN3] = LAYOUT_all(
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______, _______, _______, _______, _______)
 | 
			
		||||
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/paladin64/keymaps/via/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/paladin64/keymaps/via/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
Via layout for the paladin64 pcb
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/paladin64/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/paladin64/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
VIA_ENABLE = yes
 | 
			
		||||
							
								
								
									
										18
									
								
								keyboards/kapcave/paladin64/paladin64.c
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										18
									
								
								keyboards/kapcave/paladin64/paladin64.c
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,18 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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 "paladin64.h"
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1,3 +1,19 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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"
 | 
			
		||||
							
								
								
									
										24
									
								
								keyboards/kapcave/paladin64/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								keyboards/kapcave/paladin64/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,24 @@
 | 
			
		|||
# Paladin64 ALPS PCB
 | 
			
		||||
 | 
			
		||||
Firmware for the Paladin64 ALPS64 PCB, with underglow and an optional
 | 
			
		||||
trackpoint module.
 | 
			
		||||
 | 
			
		||||
* Keyboard Maintainer: [KapCave](https://github.com/nachie)
 | 
			
		||||
* Hardware Supported: Paladin64 ALPS PCB
 | 
			
		||||
* Hardware Availability: [KapCave](https://kapcave.com/products/paladin64-pcb)
 | 
			
		||||
 | 
			
		||||
Make example for this keyboard (after setting up your build environment):
 | 
			
		||||
 | 
			
		||||
    make kapcave/paladin64:default
 | 
			
		||||
 | 
			
		||||
Or to make and flash:
 | 
			
		||||
 | 
			
		||||
    make kapcave/paladin64:default:flash
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
* **Bootmagic reset**: Hold down ESC key (top left) and plug in the keyboard
 | 
			
		||||
* **Physical reset button**: Briefly press the button labeled "SW_RST1" on the back of the PCB
 | 
			
		||||
							
								
								
									
										23
									
								
								keyboards/kapcave/paladin64/rules.mk
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										23
									
								
								keyboards/kapcave/paladin64/rules.mk
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,23 @@
 | 
			
		|||
# MCU name
 | 
			
		||||
MCU = atmega32u4
 | 
			
		||||
 | 
			
		||||
# Bootloader selection
 | 
			
		||||
BOOTLOADER = atmel-dfu
 | 
			
		||||
 | 
			
		||||
# Build Options
 | 
			
		||||
#   change yes to no to disable
 | 
			
		||||
#
 | 
			
		||||
BOOTMAGIC_ENABLE = yes      # Enable Bootmagic Lite
 | 
			
		||||
MOUSEKEY_ENABLE = yes       # Mouse keys
 | 
			
		||||
EXTRAKEY_ENABLE = yes       # Audio control and System control
 | 
			
		||||
CONSOLE_ENABLE = yes        # 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
 | 
			
		||||
 | 
			
		||||
LAYOUTS = 60_ansi
 | 
			
		||||
							
								
								
									
										46
									
								
								keyboards/kapcave/paladinpad/config.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										46
									
								
								keyboards/kapcave/paladinpad/config.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,46 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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       0x4B43
 | 
			
		||||
#define PRODUCT_ID      0x5050
 | 
			
		||||
#define MANUFACTURER    KapCave
 | 
			
		||||
#define PRODUCT         paladinpad
 | 
			
		||||
 | 
			
		||||
/* key matrix size */
 | 
			
		||||
#define MATRIX_ROWS 5
 | 
			
		||||
#define MATRIX_COLS 4
 | 
			
		||||
 | 
			
		||||
/* COL2ROW or ROW2COL */
 | 
			
		||||
#define DIODE_DIRECTION COL2ROW
 | 
			
		||||
 | 
			
		||||
/* number of backlight levels */
 | 
			
		||||
 | 
			
		||||
#ifdef BACKLIGHT_PIN
 | 
			
		||||
#define BACKLIGHT_LEVELS 3
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/* Set 0 if debouncing isn't needed */
 | 
			
		||||
#define DEBOUNCE 5
 | 
			
		||||
 | 
			
		||||
/* prevent stuck modifiers */
 | 
			
		||||
#define PREVENT_STUCK_MODIFIERS
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										82
									
								
								keyboards/kapcave/paladinpad/info.json
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										82
									
								
								keyboards/kapcave/paladinpad/info.json
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,82 @@
 | 
			
		|||
{
 | 
			
		||||
  "keyboard_name": "PaladinPad", 
 | 
			
		||||
  "url": "https://kapcave.com/products/paladinpad-pcb", 
 | 
			
		||||
  "maintainer": "nachie", 
 | 
			
		||||
  "layouts": {
 | 
			
		||||
      "LAYOUT_ortho_5x4": {
 | 
			
		||||
          "layout": [
 | 
			
		||||
              {"x":0, "y":0},
 | 
			
		||||
              {"x":1, "y":0},
 | 
			
		||||
              {"x":2, "y":0},
 | 
			
		||||
              {"x":3, "y":0},
 | 
			
		||||
              {"x":0, "y":1},
 | 
			
		||||
              {"x":1, "y":1},
 | 
			
		||||
              {"x":2, "y":1},
 | 
			
		||||
              {"x":3, "y":1},
 | 
			
		||||
              {"x":0, "y":2},
 | 
			
		||||
              {"x":1, "y":2},
 | 
			
		||||
              {"x":2, "y":2},
 | 
			
		||||
              {"x":3, "y":2},
 | 
			
		||||
              {"x":0, "y":3},
 | 
			
		||||
              {"x":1, "y":3},
 | 
			
		||||
              {"x":2, "y":3},
 | 
			
		||||
              {"x":3, "y":3},
 | 
			
		||||
              {"x":0, "y":4},
 | 
			
		||||
              {"x":1, "y":4},
 | 
			
		||||
              {"x":2, "y":4},
 | 
			
		||||
              {"x":3, "y":4}
 | 
			
		||||
          ]
 | 
			
		||||
      },
 | 
			
		||||
      "LAYOUT_numpad_aek": {
 | 
			
		||||
          "layout": [
 | 
			
		||||
              {"x":0, "y":0},
 | 
			
		||||
              {"x":1, "y":0},
 | 
			
		||||
              {"x":2, "y":0},
 | 
			
		||||
              {"x":3, "y":0},
 | 
			
		||||
 | 
			
		||||
              {"x":0, "y":1},
 | 
			
		||||
              {"x":1, "y":1},
 | 
			
		||||
              {"x":2, "y":1},
 | 
			
		||||
              {"x":3, "y":1},
 | 
			
		||||
 | 
			
		||||
              {"x":0, "y":2},
 | 
			
		||||
              {"x":1, "y":2},
 | 
			
		||||
              {"x":2, "y":2},
 | 
			
		||||
              {"x":3, "y":2},
 | 
			
		||||
 | 
			
		||||
              {"x":0, "y":3},
 | 
			
		||||
              {"x":1, "y":3},
 | 
			
		||||
              {"x":2, "y":3},
 | 
			
		||||
 | 
			
		||||
              {"x":0, "y":4, "w":2},
 | 
			
		||||
              {"x":2, "y":4},
 | 
			
		||||
              {"x":3, "y":3, "h":2}
 | 
			
		||||
          ]
 | 
			
		||||
      },
 | 
			
		||||
      "LAYOUT_numpad_5x4": {
 | 
			
		||||
        "layout": [
 | 
			
		||||
              {"x":0, "y":0},
 | 
			
		||||
              {"x":1, "y":0},
 | 
			
		||||
              {"x":2, "y":0},
 | 
			
		||||
              {"x":3, "y":0},
 | 
			
		||||
 | 
			
		||||
              {"x":0, "y":1},
 | 
			
		||||
              {"x":1, "y":1},
 | 
			
		||||
              {"x":2, "y":1},
 | 
			
		||||
 | 
			
		||||
              {"x":0, "y":2},
 | 
			
		||||
              {"x":1, "y":2},
 | 
			
		||||
              {"x":2, "y":2},
 | 
			
		||||
              {"x":3, "y":1, "h":2},
 | 
			
		||||
 | 
			
		||||
              {"x":0, "y":3},
 | 
			
		||||
              {"x":1, "y":3},
 | 
			
		||||
              {"x":2, "y":3},
 | 
			
		||||
 | 
			
		||||
              {"x":0, "y":4, "w":2},
 | 
			
		||||
              {"x":2, "y":4},
 | 
			
		||||
              {"x":3, "y":3, "h":2}
 | 
			
		||||
        ]
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										38
									
								
								keyboards/kapcave/paladinpad/keymaps/aek/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								keyboards/kapcave/paladinpad/keymaps/aek/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,38 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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] = {
 | 
			
		||||
 | 
			
		||||
    /* DEFAULT */
 | 
			
		||||
	LAYOUT_numpad_aek(
 | 
			
		||||
		MO(1), KC_PEQL, KC_PSLS, KC_PAST,
 | 
			
		||||
		KC_P7, KC_P8, KC_P9, KC_PMNS, 
 | 
			
		||||
		KC_P4, KC_P5, KC_P6, KC_PPLS,
 | 
			
		||||
		KC_P1, KC_P2, KC_P3,
 | 
			
		||||
		       KC_P0, KC_PDOT, KC_PENT), 
 | 
			
		||||
 | 
			
		||||
    /* FUNCTION */
 | 
			
		||||
	LAYOUT_numpad_aek(
 | 
			
		||||
		KC_TRNS, RGB_TOG, RGB_MOD, KC_TRNS,
 | 
			
		||||
        RGB_HUI, RGB_SAI, RGB_VAI, KC_TRNS,
 | 
			
		||||
        RGB_HUD, RGB_SAD, RGB_VAD, KC_TRNS,
 | 
			
		||||
		KC_TRNS, KC_TRNS, KC_TRNS,
 | 
			
		||||
		         KC_TRNS, RESET, KC_NLCK)
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/paladinpad/keymaps/aek/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/paladinpad/keymaps/aek/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
The keymap for PaladinPad which resembles the AEK Numpad
 | 
			
		||||
							
								
								
									
										38
									
								
								keyboards/kapcave/paladinpad/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								keyboards/kapcave/paladinpad/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,38 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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] = {
 | 
			
		||||
 | 
			
		||||
    /* DEFAULT */
 | 
			
		||||
	LAYOUT_numpad_5x4(
 | 
			
		||||
		MO(1), KC_PAST, KC_PSLS, KC_PMNS,
 | 
			
		||||
		KC_P7, KC_P8, KC_P9, 
 | 
			
		||||
		KC_P4, KC_P5, KC_P6, KC_PPLS,
 | 
			
		||||
		KC_P1, KC_P2, KC_P3,
 | 
			
		||||
		       KC_P0, KC_PDOT, KC_PENT), 
 | 
			
		||||
 | 
			
		||||
    /* FUNCTION */
 | 
			
		||||
	LAYOUT_numpad_5x4(
 | 
			
		||||
		KC_TRNS, RGB_TOG, RGB_MOD, KC_TRNS,
 | 
			
		||||
        RGB_HUI, RGB_SAI, RGB_VAI,
 | 
			
		||||
        RGB_HUD, RGB_SAD, RGB_VAD, KC_TRNS,
 | 
			
		||||
		KC_TRNS, KC_TRNS, KC_TRNS,
 | 
			
		||||
		         KC_TRNS, RESET, KC_NLCK)
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/paladinpad/keymaps/default/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/paladinpad/keymaps/default/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
The default keymap for PaladinPad which resembles the AEK Numpad
 | 
			
		||||
							
								
								
									
										53
									
								
								keyboards/kapcave/paladinpad/keymaps/ortho/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										53
									
								
								keyboards/kapcave/paladinpad/keymaps/ortho/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,53 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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 custom_keycodes {
 | 
			
		||||
  DBLZERO = SAFE_RANGE
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
    /* DEFAULT */
 | 
			
		||||
	LAYOUT_ortho_5x4(
 | 
			
		||||
		MO(1), KC_PSLS, KC_PAST, KC_BSPC,
 | 
			
		||||
		KC_P7, KC_P8, KC_P9, KC_MINS, 
 | 
			
		||||
		KC_P4, KC_P5, KC_P6, KC_PPLS,
 | 
			
		||||
		KC_P1, KC_P2, KC_P3, KC_EQL,
 | 
			
		||||
		DBLZERO, KC_P0, KC_PDOT, KC_PENT), 
 | 
			
		||||
 | 
			
		||||
    /* FUNCTION */
 | 
			
		||||
	LAYOUT_ortho_5x4(
 | 
			
		||||
		KC_TRNS, RGB_TOG, RGB_MOD, KC_TRNS,
 | 
			
		||||
        RGB_HUI, RGB_SAI, RGB_VAI, KC_TRNS,
 | 
			
		||||
        RGB_HUD, RGB_SAD, RGB_VAD, KC_TRNS,
 | 
			
		||||
		KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
 | 
			
		||||
		KC_TRNS, KC_TRNS, RESET,   KC_NLCK)
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
 | 
			
		||||
  switch (keycode) {
 | 
			
		||||
    case DBLZERO:
 | 
			
		||||
      if (record->event.pressed) {
 | 
			
		||||
        SEND_STRING("00");
 | 
			
		||||
      }
 | 
			
		||||
      break;
 | 
			
		||||
  }
 | 
			
		||||
  return true;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/kapcave/paladinpad/keymaps/ortho/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/kapcave/paladinpad/keymaps/ortho/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
The ortho keymap for PaladinPad which makes it a 5x4 ortho pad
 | 
			
		||||
							
								
								
									
										59
									
								
								keyboards/kapcave/paladinpad/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										59
									
								
								keyboards/kapcave/paladinpad/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,59 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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 layer_names {
 | 
			
		||||
    _BASE, // Default Layer
 | 
			
		||||
    _FN, // Fn Layer 1
 | 
			
		||||
    _FN2, // Fn Layer 2
 | 
			
		||||
    _FN3 // Fn Layer 3
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
    /* DEFAULT */
 | 
			
		||||
	[_BASE] = LAYOUT_ortho_5x4(
 | 
			
		||||
		MO(1), KC_PSLS, KC_PAST, KC_BSPC,
 | 
			
		||||
		KC_P7, KC_P8, KC_P9, KC_MINS, 
 | 
			
		||||
		KC_P4, KC_P5, KC_P6, KC_PPLS,
 | 
			
		||||
		KC_P1, KC_P2, KC_P3, KC_EQL,
 | 
			
		||||
		KC_P0, KC_P0, KC_PDOT, KC_PENT), 
 | 
			
		||||
 | 
			
		||||
    /* FUNCTION */
 | 
			
		||||
    [_FN] = LAYOUT_ortho_5x4(
 | 
			
		||||
		KC_TRNS, RGB_TOG, RGB_MOD, KC_TRNS,
 | 
			
		||||
        RGB_HUI, RGB_SAI, RGB_VAI, KC_TRNS,
 | 
			
		||||
        RGB_HUD, RGB_SAD, RGB_VAD, KC_TRNS,
 | 
			
		||||
		KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
 | 
			
		||||
		KC_TRNS, KC_TRNS, RESET,   KC_NLCK),
 | 
			
		||||
    
 | 
			
		||||
    /* FUNCTION */
 | 
			
		||||
    [_FN2] = LAYOUT_ortho_5x4(
 | 
			
		||||
		_______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______),
 | 
			
		||||
 | 
			
		||||
    /* FUNCTION */
 | 
			
		||||
    [_FN3] = LAYOUT_ortho_5x4(
 | 
			
		||||
		_______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______,
 | 
			
		||||
        _______, _______, _______, _______)
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										3
									
								
								keyboards/kapcave/paladinpad/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								keyboards/kapcave/paladinpad/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,3 @@
 | 
			
		|||
VIA_ENABLE = yes
 | 
			
		||||
# Not enough space on ATMega32u4 for RGB + Audio + Via
 | 
			
		||||
AUDIO_ENABLE = no
 | 
			
		||||
							
								
								
									
										17
									
								
								keyboards/kapcave/paladinpad/paladinpad.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								keyboards/kapcave/paladinpad/paladinpad.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,17 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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 "paladinpad.h"
 | 
			
		||||
							
								
								
									
										103
									
								
								keyboards/kapcave/paladinpad/paladinpad.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										103
									
								
								keyboards/kapcave/paladinpad/paladinpad.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,103 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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"
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * ┌─────┬─────┬─────┬─────┐
 | 
			
		||||
 * │Num1 │ Eq  │Slsh │Star │
 | 
			
		||||
 * ├─────┼─────┼─────┼─────┤
 | 
			
		||||
 * │  7  │  8  │  9  │     │
 | 
			
		||||
 * ├─────┼─────┼─────┤Plus │
 | 
			
		||||
 * │  4  │  5  │  6  │     │
 | 
			
		||||
 * ├─────┼─────┼─────┼─────┤
 | 
			
		||||
 * │  1  │  2  │  3  │     │
 | 
			
		||||
 * ├─────┴─────┼─────┤ Ent │
 | 
			
		||||
 * │     0     │  .  │     │
 | 
			
		||||
 * └───────────┴─────┴─────┘
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#define LAYOUT_numpad_5x4( \
 | 
			
		||||
	K_NUM1, K_SLSH, K_STAR, K_MINUS, \
 | 
			
		||||
    K_7, K_8, K_9, \
 | 
			
		||||
    K_4, K_5, K_6, K_PLUS, \
 | 
			
		||||
    K_1, K_2, K_3, \
 | 
			
		||||
         K_0, K_DOT, K_ENT   \
 | 
			
		||||
) { \
 | 
			
		||||
	{ K_NUM1, K_SLSH, K_STAR, K_MINUS }, \
 | 
			
		||||
    { K_7, K_8, K_9, KC_NO }, \
 | 
			
		||||
    { K_4, K_5, K_6, K_PLUS }, \
 | 
			
		||||
    { K_1, K_2, K_3, K_ENT }, \
 | 
			
		||||
    { K_0, K_DOT, KC_NO, KC_NO }  \
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * ┌─────┬─────┬─────┬─────┐
 | 
			
		||||
 * │Num1 │Eql  │Slsh │Star │
 | 
			
		||||
 * ├─────┼─────┼─────┼─────┤
 | 
			
		||||
 * │  7  │  8  │  9  │Minus│
 | 
			
		||||
 * ├─────┼─────┼─────┼─────┤
 | 
			
		||||
 * │  4  │  5  │  6  │Plus │
 | 
			
		||||
 * ├─────┼─────┼─────┼─────┤
 | 
			
		||||
 * │  1  │  2  │  3  │     │
 | 
			
		||||
 * ├─────┼─────┼─────┤ Ent │
 | 
			
		||||
 * │  0  │ 10  │  .  │     │
 | 
			
		||||
 * └─────┴─────┴─────┴─────┘
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#define LAYOUT_numpad_aek( \
 | 
			
		||||
	K_NUM1, K_EQ1, K_SLSH1, K_STAR1, \
 | 
			
		||||
    K_7, K_8, K_9, K_MINUS1, \
 | 
			
		||||
    K_4, K_5, K_6, K_PLUS, \
 | 
			
		||||
    K_1, K_2, K_3, \
 | 
			
		||||
         K_0, K_DOT1, K_ENT   \
 | 
			
		||||
) { \
 | 
			
		||||
	{ K_NUM1, K_EQ1, K_SLSH1, K_STAR1 }, \
 | 
			
		||||
    { K_7, K_8, K_9, K_MINUS1 }, \
 | 
			
		||||
    { K_4, K_5, K_6, K_PLUS }, \
 | 
			
		||||
    { K_1, K_2, K_3, K_ENT }, \
 | 
			
		||||
    { K_0, K_DOT1, KC_NO, KC_NO }  \
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * ┌─────┬─────┬─────┬─────┐
 | 
			
		||||
 * │Num1 │ Eq  │Slsh │Star │
 | 
			
		||||
 * ├─────┼─────┼─────┼─────┤
 | 
			
		||||
 * │  7  │  8  │  9  │Minus│
 | 
			
		||||
 * ├─────┼─────┼─────┼─────┤
 | 
			
		||||
 * │  4  │  5  │  6  │Plus │
 | 
			
		||||
 * ├─────┼─────┼─────┼─────┤
 | 
			
		||||
 * │  1  │  2  │  3  │ 11  │
 | 
			
		||||
 * ├─────┼─────┼─────┼─────┤
 | 
			
		||||
 * │  0  │ 10  │  .  │ Ent │
 | 
			
		||||
 * └─────┴─────┴─────┴─────┘
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#define LAYOUT_ortho_5x4( \
 | 
			
		||||
	K_NUM1, K_EQ1, K_SLSH1, K_STAR1, \
 | 
			
		||||
    K_7, K_8, K_9, K_MINUS1, \
 | 
			
		||||
    K_4, K_5, K_6, K_PLUS, \
 | 
			
		||||
    K_1, K_2, K_3, K_11, \
 | 
			
		||||
    K_0, K_10, K_DOT1, K_ENT   \
 | 
			
		||||
) { \
 | 
			
		||||
	{ K_NUM1, K_EQ1, K_SLSH1, K_STAR1 }, \
 | 
			
		||||
    { K_7, K_8, K_9, K_MINUS1 }, \
 | 
			
		||||
    { K_4, K_5, K_6, K_PLUS }, \
 | 
			
		||||
    { K_1, K_2, K_3, K_ENT }, \
 | 
			
		||||
    { K_0, K_DOT1, K_10, K_11 }  \
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										23
									
								
								keyboards/kapcave/paladinpad/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								keyboards/kapcave/paladinpad/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,23 @@
 | 
			
		|||
# PaladinPad PCB
 | 
			
		||||
 | 
			
		||||
Firmware for the PaladinPad, with underglow.
 | 
			
		||||
 | 
			
		||||
* Keyboard Maintainer: [KapCave](https://github.com/nachie)
 | 
			
		||||
* Hardware Supported: PaladinPad
 | 
			
		||||
* Hardware Availability: [KapCave](https://kapcave.com/products/paladinpad-pcb)
 | 
			
		||||
 | 
			
		||||
Make example for this keyboard (after setting up your build environment):
 | 
			
		||||
 | 
			
		||||
    make kapcave/paladinpad:default
 | 
			
		||||
 | 
			
		||||
Or to make and flash:
 | 
			
		||||
 | 
			
		||||
    make kapcave/paladinpad:default:flash
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
* **Bootmagic reset**: Hold down NumLock (Top Left) and plug in the keyboard
 | 
			
		||||
* **Physical reset button**: Briefly press the button labeled "SW_RST1" on the back of the PCB
 | 
			
		||||
							
								
								
									
										44
									
								
								keyboards/kapcave/paladinpad/rev1/config.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										44
									
								
								keyboards/kapcave/paladinpad/rev1/config.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,44 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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"
 | 
			
		||||
 | 
			
		||||
#define DEVICE_VER      0x0001
 | 
			
		||||
 | 
			
		||||
/* key matrix pins */
 | 
			
		||||
#define MATRIX_ROW_PINS { C7, B6, B4, D7, D6 }
 | 
			
		||||
#define MATRIX_COL_PINS { D4, D5, D3, B7 }
 | 
			
		||||
 | 
			
		||||
#define RGB_DI_PIN D0
 | 
			
		||||
 | 
			
		||||
#ifdef RGB_DI_PIN
 | 
			
		||||
#define RGBLIGHT_EFFECT_BREATHING
 | 
			
		||||
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
 | 
			
		||||
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
 | 
			
		||||
#define RGBLIGHT_EFFECT_SNAKE
 | 
			
		||||
#define RGBLIGHT_EFFECT_KNIGHT
 | 
			
		||||
#define RGBLIGHT_EFFECT_CHRISTMAS
 | 
			
		||||
#define RGBLIGHT_EFFECT_STATIC_GRADIENT
 | 
			
		||||
#define RGBLIGHT_EFFECT_RGB_TEST
 | 
			
		||||
#define RGBLIGHT_EFFECT_ALTERNATING
 | 
			
		||||
#define RGBLIGHT_EFFECT_TWINKLE
 | 
			
		||||
#define RGBLED_NUM 8
 | 
			
		||||
#define RGBLIGHT_HUE_STEP 10
 | 
			
		||||
#define RGBLIGHT_SAT_STEP 17
 | 
			
		||||
#define RGBLIGHT_VAL_STEP 12
 | 
			
		||||
#endif
 | 
			
		||||
							
								
								
									
										0
									
								
								keyboards/kapcave/paladinpad/rev1/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								keyboards/kapcave/paladinpad/rev1/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
								
								
									
										47
									
								
								keyboards/kapcave/paladinpad/rev2/config.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								keyboards/kapcave/paladinpad/rev2/config.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,47 @@
 | 
			
		|||
/*
 | 
			
		||||
Copyright 2021 KapCave
 | 
			
		||||
 | 
			
		||||
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"
 | 
			
		||||
 | 
			
		||||
#define DEVICE_VER      0x0002
 | 
			
		||||
 | 
			
		||||
/* key matrix pins */
 | 
			
		||||
#define MATRIX_ROW_PINS { F4, F6, D7, B4, D6 }
 | 
			
		||||
#define MATRIX_COL_PINS { F7, F5, D3, B7 }
 | 
			
		||||
 | 
			
		||||
#define AUDIO_PIN C6
 | 
			
		||||
 | 
			
		||||
#define RGB_DI_PIN D0
 | 
			
		||||
 | 
			
		||||
#ifdef RGB_DI_PIN
 | 
			
		||||
#define RGBLIGHT_EFFECT_BREATHING
 | 
			
		||||
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
 | 
			
		||||
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
 | 
			
		||||
#define RGBLIGHT_EFFECT_SNAKE
 | 
			
		||||
#define RGBLIGHT_EFFECT_KNIGHT
 | 
			
		||||
#define RGBLIGHT_EFFECT_CHRISTMAS
 | 
			
		||||
#define RGBLIGHT_EFFECT_STATIC_GRADIENT
 | 
			
		||||
#define RGBLIGHT_EFFECT_RGB_TEST
 | 
			
		||||
#define RGBLIGHT_EFFECT_ALTERNATING
 | 
			
		||||
#define RGBLIGHT_EFFECT_TWINKLE
 | 
			
		||||
#define RGBLED_NUM 7
 | 
			
		||||
#define RGBLIGHT_HUE_STEP 10
 | 
			
		||||
#define RGBLIGHT_SAT_STEP 17
 | 
			
		||||
#define RGBLIGHT_VAL_STEP 12
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										0
									
								
								keyboards/kapcave/paladinpad/rev2/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								keyboards/kapcave/paladinpad/rev2/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
								
								
									
										24
									
								
								keyboards/kapcave/paladinpad/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								keyboards/kapcave/paladinpad/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,24 @@
 | 
			
		|||
# MCU name
 | 
			
		||||
MCU = atmega32u4
 | 
			
		||||
 | 
			
		||||
# 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
 | 
			
		||||
 | 
			
		||||
DEFAULT_FOLDER = kapcave/paladinpad/rev2
 | 
			
		||||
LAYOUTS = numpad_5x4 ortho_5x4
 | 
			
		||||
| 
						 | 
				
			
			@ -1,2 +0,0 @@
 | 
			
		|||
#include "paladin64.h"
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1,19 +0,0 @@
 | 
			
		|||
# Paladin64 ALPS PCB by /u/iNachie
 | 
			
		||||
 | 
			
		||||
Firmware for the Paladin64 ALPS64 PCB, with underglow and an optional
 | 
			
		||||
trackpoint module.
 | 
			
		||||
 | 
			
		||||
Keyboard Maintainer: [/u/iNachie](https://github.com/nachie)  
 | 
			
		||||
Hardware Supported: Paladin64 ALPS PCB by iNachie  
 | 
			
		||||
Hardware Availability: [/u/iNachie](https://www.reddit.com/user/inachie/)
 | 
			
		||||
 | 
			
		||||
Make example for this keyboard (after setting up your build environment):
 | 
			
		||||
 | 
			
		||||
    make paladin64:default
 | 
			
		||||
 | 
			
		||||
Or to make and flash:
 | 
			
		||||
 | 
			
		||||
    make paladin64:default:dfu
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
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.
 | 
			
		||||
| 
						 | 
				
			
			@ -1,24 +0,0 @@
 | 
			
		|||
# MCU name
 | 
			
		||||
MCU = atmega32u4
 | 
			
		||||
 | 
			
		||||
# Bootloader selection
 | 
			
		||||
BOOTLOADER = atmel-dfu
 | 
			
		||||
 | 
			
		||||
# Build Options
 | 
			
		||||
#   comment out to disable the options.
 | 
			
		||||
#
 | 
			
		||||
BOOTMAGIC_ENABLE = lite     # Enable Bootmagic Lite
 | 
			
		||||
MOUSEKEY_ENABLE = yes	# Mouse keys
 | 
			
		||||
EXTRAKEY_ENABLE = yes	# Audio control and System control
 | 
			
		||||
CONSOLE_ENABLE = yes	# Console for debug
 | 
			
		||||
COMMAND_ENABLE = no    # Commands for debug and configuration
 | 
			
		||||
SLEEP_LED_ENABLE = no  # Breathing sleep LED during USB suspend
 | 
			
		||||
NKRO_ENABLE = yes		# USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
 | 
			
		||||
BACKLIGHT_ENABLE = no  # Enable keyboard backlight functionality
 | 
			
		||||
AUDIO_ENABLE = no
 | 
			
		||||
RGBLIGHT_ENABLE = yes
 | 
			
		||||
#PS2_MOUSE_ENABLE = yes
 | 
			
		||||
#PS2_USE_USART = yes
 | 
			
		||||
#PS2_USE_INT = yes
 | 
			
		||||
 | 
			
		||||
LAYOUTS = 60_ansi
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue