diff options
Diffstat (limited to 'keyboards/bthlabs/geekpad')
-rw-r--r-- | keyboards/bthlabs/geekpad/.noci | 0 | ||||
-rw-r--r-- | keyboards/bthlabs/geekpad/config.h | 122 | ||||
-rw-r--r-- | keyboards/bthlabs/geekpad/geekpad.c | 16 | ||||
-rw-r--r-- | keyboards/bthlabs/geekpad/geekpad.h | 37 | ||||
-rw-r--r-- | keyboards/bthlabs/geekpad/info.json | 20 | ||||
-rw-r--r-- | keyboards/bthlabs/geekpad/keymaps/default/keymap.c | 24 | ||||
-rw-r--r-- | keyboards/bthlabs/geekpad/readme.md | 15 | ||||
-rw-r--r-- | keyboards/bthlabs/geekpad/rules.mk | 18 |
8 files changed, 252 insertions, 0 deletions
diff --git a/keyboards/bthlabs/geekpad/.noci b/keyboards/bthlabs/geekpad/.noci new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/keyboards/bthlabs/geekpad/.noci | |||
diff --git a/keyboards/bthlabs/geekpad/config.h b/keyboards/bthlabs/geekpad/config.h new file mode 100644 index 000000000..7994a9cab --- /dev/null +++ b/keyboards/bthlabs/geekpad/config.h | |||
@@ -0,0 +1,122 @@ | |||
1 | /* | ||
2 | Copyright 2019-present Tomek Wójcik <[email protected]> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include "config_common.h" | ||
21 | |||
22 | /* USB Device descriptor parameter */ | ||
23 | #define VENDOR_ID 0xFEED | ||
24 | #define PRODUCT_ID 0x4257 | ||
25 | #define DEVICE_VER 0x0001 | ||
26 | #define MANUFACTURER BTHLabs | ||
27 | #define PRODUCT GeekPad | ||
28 | |||
29 | /* key matrix size */ | ||
30 | #define MATRIX_ROWS 3 | ||
31 | #define MATRIX_COLS 3 | ||
32 | |||
33 | /* | ||
34 | * Keyboard Matrix Assignments | ||
35 | * | ||
36 | * Change this to how you wired your keyboard | ||
37 | * COLS: AVR pins used for columns, left to right | ||
38 | * ROWS: AVR pins used for rows, top to bottom | ||
39 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
40 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
41 | * | ||
42 | */ | ||
43 | #define MATRIX_ROW_PINS { F4, F5, F6 } | ||
44 | #define MATRIX_COL_PINS { D4, D0, D1 } | ||
45 | #define UNUSED_PINS | ||
46 | |||
47 | /* COL2ROW, ROW2COL*/ | ||
48 | #define DIODE_DIRECTION COL2ROW | ||
49 | |||
50 | // #define BACKLIGHT_PIN B7 | ||
51 | // #define BACKLIGHT_BREATHING | ||
52 | // #define BACKLIGHT_LEVELS 3 | ||
53 | |||
54 | // #define RGB_DI_PIN E2 | ||
55 | // #ifdef RGB_DI_PIN | ||
56 | // #define RGBLIGHT_ANIMATIONS | ||
57 | // #define RGBLED_NUM 16 | ||
58 | // #define RGBLIGHT_HUE_STEP 8 | ||
59 | // #define RGBLIGHT_SAT_STEP 8 | ||
60 | // #define RGBLIGHT_VAL_STEP 8 | ||
61 | // #endif | ||
62 | |||
63 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
64 | #define DEBOUNCE 5 | ||
65 | |||
66 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
67 | //#define MATRIX_HAS_GHOST | ||
68 | |||
69 | /* number of backlight levels */ | ||
70 | |||
71 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
72 | // #define LOCKING_SUPPORT_ENABLE | ||
73 | /* Locking resynchronize hack */ | ||
74 | // #define LOCKING_RESYNC_ENABLE | ||
75 | |||
76 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
77 | * This is userful for the Windows task manager shortcut (ctrl+shift+esc). | ||
78 | */ | ||
79 | // #define GRAVE_ESC_CTRL_OVERRIDE | ||
80 | |||
81 | /* | ||
82 | * Force NKRO | ||
83 | * | ||
84 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
85 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
86 | * makefile for this to work.) | ||
87 | * | ||
88 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
89 | * until the next keyboard reset. | ||
90 | * | ||
91 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
92 | * fully operational during normal computer usage. | ||
93 | * | ||
94 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
95 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
96 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
97 | * power-up. | ||
98 | * | ||
99 | */ | ||
100 | //#define FORCE_NKRO | ||
101 | |||
102 | /* | ||
103 | * Feature disable options | ||
104 | * These options are also useful to firmware size reduction. | ||
105 | */ | ||
106 | |||
107 | /* disable debug print */ | ||
108 | // #define NO_DEBUG | ||
109 | |||
110 | /* disable print */ | ||
111 | // #define NO_PRINT | ||
112 | |||
113 | /* disable action features */ | ||
114 | //#define NO_ACTION_LAYER | ||
115 | //#define NO_ACTION_TAPPING | ||
116 | //#define NO_ACTION_ONESHOT | ||
117 | //#define NO_ACTION_MACRO | ||
118 | //#define NO_ACTION_FUNCTION | ||
119 | |||
120 | /* Bootmagic Lite key configuration */ | ||
121 | // #define BOOTMAGIC_LITE_ROW 0 | ||
122 | // #define BOOTMAGIC_LITE_COLUMN 0 | ||
diff --git a/keyboards/bthlabs/geekpad/geekpad.c b/keyboards/bthlabs/geekpad/geekpad.c new file mode 100644 index 000000000..6b8edd31c --- /dev/null +++ b/keyboards/bthlabs/geekpad/geekpad.c | |||
@@ -0,0 +1,16 @@ | |||
1 | /* Copyright 2019-present Tomek Wójcik <[email protected]> | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | #include "geekpad.h" | ||
diff --git a/keyboards/bthlabs/geekpad/geekpad.h b/keyboards/bthlabs/geekpad/geekpad.h new file mode 100644 index 000000000..4dc6800fe --- /dev/null +++ b/keyboards/bthlabs/geekpad/geekpad.h | |||
@@ -0,0 +1,37 @@ | |||
1 | /* Copyright 2019-present Tomek Wójcik <[email protected]> | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | #include "quantum.h" | ||
20 | |||
21 | /* This a shortcut to help you visually see your layout. | ||
22 | * | ||
23 | * The first section contains all of the arguments representing the physical | ||
24 | * layout of the board and position of the keys. | ||
25 | * | ||
26 | * The second converts the arguments into a two-dimensional array which | ||
27 | * represents the switch matrix. | ||
28 | */ | ||
29 | #define LAYOUT( \ | ||
30 | k00, k01, k02, \ | ||
31 | k10, k11, k12, \ | ||
32 | k20, k21, k22 \ | ||
33 | ) { \ | ||
34 | { k00, k01, k02 }, \ | ||
35 | { k10, k11, k12 }, \ | ||
36 | { k20, k21, k22 } \ | ||
37 | } | ||
diff --git a/keyboards/bthlabs/geekpad/info.json b/keyboards/bthlabs/geekpad/info.json new file mode 100644 index 000000000..52ecd7a69 --- /dev/null +++ b/keyboards/bthlabs/geekpad/info.json | |||
@@ -0,0 +1,20 @@ | |||
1 | { | ||
2 | "keyboard_name": "BTHLabs GeekPad", | ||
3 | "url": "https://git.bthlabs.pl/tomekwojcik/geekpad", | ||
4 | "maintainer": "Tomek Wójcik <[email protected]>", | ||
5 | "layouts": { | ||
6 | "LAYOUT": { | ||
7 | "layout": [ | ||
8 | {"x": 0, "y": 0}, | ||
9 | {"x": 1, "y": 0}, | ||
10 | {"x": 2,"y": 0}, | ||
11 | {"x": 0, "y": 1}, | ||
12 | {"x": 1, "y": 1}, | ||
13 | {"x": 2,"y": 1}, | ||
14 | {"x": 0, "y": 2}, | ||
15 | {"x": 1, "y": 2}, | ||
16 | {"x": 2,"y": 2} | ||
17 | ] | ||
18 | } | ||
19 | } | ||
20 | } | ||
diff --git a/keyboards/bthlabs/geekpad/keymaps/default/keymap.c b/keyboards/bthlabs/geekpad/keymaps/default/keymap.c new file mode 100644 index 000000000..a8791e70c --- /dev/null +++ b/keyboards/bthlabs/geekpad/keymaps/default/keymap.c | |||
@@ -0,0 +1,24 @@ | |||
1 | /* Copyright 2019-present Tomek Wójcik <[email protected]> | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
19 | [0] = LAYOUT( /* Base */ | ||
20 | KC_F1, KC_F2, KC_F3, | ||
21 | KC_MEDIA_REWIND, KC_MEDIA_PLAY_PAUSE, KC_MEDIA_FAST_FORWARD, | ||
22 | KC_AUDIO_MUTE, KC_AUDIO_VOL_DOWN, KC_AUDIO_VOL_UP | ||
23 | ), | ||
24 | }; | ||
diff --git a/keyboards/bthlabs/geekpad/readme.md b/keyboards/bthlabs/geekpad/readme.md new file mode 100644 index 000000000..6558c32d9 --- /dev/null +++ b/keyboards/bthlabs/geekpad/readme.md | |||
@@ -0,0 +1,15 @@ | |||
1 | # BTHLabs GeekPad | ||
2 | |||
3 |  | ||
4 | |||
5 | A 3x3 custom macro pad designed and developed by Tomek Wójcik. | ||
6 | |||
7 | Keyboard Maintainer: [Tomek Wójcik](https://www.bthlabs.pl/) | ||
8 | Hardware Supported: GeekPad Custom PCB | ||
9 | Hardware Availability: [Project Repository](https://git.bthlabs.pl/tomekwojcik/geekpad) | ||
10 | |||
11 | Make example for this keyboard (after setting up your build environment): | ||
12 | |||
13 | make bthlabs/geekpad:default | ||
14 | |||
15 | 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). | ||
diff --git a/keyboards/bthlabs/geekpad/rules.mk b/keyboards/bthlabs/geekpad/rules.mk new file mode 100644 index 000000000..5d3b05abd --- /dev/null +++ b/keyboards/bthlabs/geekpad/rules.mk | |||
@@ -0,0 +1,18 @@ | |||
1 | # MCU name | ||
2 | MCU = atmega32u4 | ||
3 | |||
4 | # Bootloader selection | ||
5 | BOOTLOADER = caterina | ||
6 | |||
7 | # Build Options | ||
8 | # change yes to no to disable | ||
9 | # | ||
10 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite | ||
11 | MOUSEKEY_ENABLE = no # Mouse keys | ||
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
13 | CONSOLE_ENABLE = no # Console for debug | ||
14 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
15 | NKRO_ENABLE = no # Enable N-Key Rollover | ||
16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
18 | AUDIO_ENABLE = no # Audio output | ||