diff options
author | Chris Broekema <broekema-github@fuzzms.nl> | 2022-01-29 08:04:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 23:04:42 -0800 |
commit | 002a1add8b68ca8b1c7c2c21f75dca88df15ad2e (patch) | |
tree | 5125180a12074c46208d887c3997dd0b1c70a4da /keyboards/handwired | |
parent | 13e6517460718dbdddd10661d176480a2388c69d (diff) | |
download | qmk_firmware-002a1add8b68ca8b1c7c2c21f75dca88df15ad2e.tar.gz qmk_firmware-002a1add8b68ca8b1c7c2c21f75dca88df15ad2e.zip |
[Keyboard] Add misterdeck 3d-printed handwired stream deck (#15556)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/handwired')
-rw-r--r-- | keyboards/handwired/misterdeck/config.h | 45 | ||||
-rw-r--r-- | keyboards/handwired/misterdeck/info.json | 5 | ||||
-rw-r--r-- | keyboards/handwired/misterdeck/keymaps/default/config.h | 20 | ||||
-rw-r--r-- | keyboards/handwired/misterdeck/keymaps/default/keymap.c | 37 | ||||
-rw-r--r-- | keyboards/handwired/misterdeck/keymaps/nobuttons/config.h | 22 | ||||
-rw-r--r-- | keyboards/handwired/misterdeck/keymaps/nobuttons/keymap.c | 37 | ||||
-rw-r--r-- | keyboards/handwired/misterdeck/misterdeck.c | 17 | ||||
-rw-r--r-- | keyboards/handwired/misterdeck/misterdeck.h | 29 | ||||
-rw-r--r-- | keyboards/handwired/misterdeck/readme.md | 21 | ||||
-rw-r--r-- | keyboards/handwired/misterdeck/rules.mk | 21 |
10 files changed, 254 insertions, 0 deletions
diff --git a/keyboards/handwired/misterdeck/config.h b/keyboards/handwired/misterdeck/config.h new file mode 100644 index 000000000..3aaef79d0 --- /dev/null +++ b/keyboards/handwired/misterdeck/config.h | |||
@@ -0,0 +1,45 @@ | |||
1 | /* | ||
2 | Copyright 2021 Chris Broekema (broekema@gmail.com) | ||
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 | |||
19 | #pragma once | ||
20 | |||
21 | /* USB Device descriptor parameter */ | ||
22 | #define VENDOR_ID 0xBEEF | ||
23 | #define PRODUCT_ID 0x6969 | ||
24 | #define DEVICE_VER 0x0001 | ||
25 | #define MANUFACTURER QMK | ||
26 | |||
27 | /* key matrix size */ | ||
28 | #define MATRIX_ROWS 3 | ||
29 | #define MATRIX_COLS 4 | ||
30 | |||
31 | #define MATRIX_ROW_PINS { D1, D0, D4 } | ||
32 | #define MATRIX_COL_PINS { D7, E6, B4, B5 } | ||
33 | |||
34 | /* COL2ROW, ROW2COL */ | ||
35 | #define DIODE_DIRECTION ROW2COL | ||
36 | |||
37 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
38 | #define DEBOUNCE 5 | ||
39 | |||
40 | /* disable these deprecated features by default */ | ||
41 | #define NO_ACTION_MACRO | ||
42 | #define NO_ACTION_FUNCTION | ||
43 | |||
44 | //#define JOYSTICK_AXES_COUNT 4 | ||
45 | //#define JOYSTICK_BUTTON_COUNT 8 | ||
diff --git a/keyboards/handwired/misterdeck/info.json b/keyboards/handwired/misterdeck/info.json new file mode 100644 index 000000000..84c386310 --- /dev/null +++ b/keyboards/handwired/misterdeck/info.json | |||
@@ -0,0 +1,5 @@ | |||
1 | { | ||
2 | "keyboard_name": "MisteRdeck", | ||
3 | "url": "https://www.thingiverse.com/thing:4627779", | ||
4 | "maintainer": "broekema", | ||
5 | } | ||
diff --git a/keyboards/handwired/misterdeck/keymaps/default/config.h b/keyboards/handwired/misterdeck/keymaps/default/config.h new file mode 100644 index 000000000..c21c29910 --- /dev/null +++ b/keyboards/handwired/misterdeck/keymaps/default/config.h | |||
@@ -0,0 +1,20 @@ | |||
1 | /* Copyright 2021 Chris Broekema (broekema@gmail.com) | ||
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 | #define JOYSTICK_AXES_COUNT 4 | ||
20 | #define JOYSTICK_BUTTON_COUNT 4 | ||
diff --git a/keyboards/handwired/misterdeck/keymaps/default/keymap.c b/keyboards/handwired/misterdeck/keymaps/default/keymap.c new file mode 100644 index 000000000..a6b6ee467 --- /dev/null +++ b/keyboards/handwired/misterdeck/keymaps/default/keymap.c | |||
@@ -0,0 +1,37 @@ | |||
1 | /* Copyright 2021 Chris Broekema (broekema@gmail.com) | ||
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 | #include QMK_KEYBOARD_H | ||
18 | #include "joystick.h" | ||
19 | |||
20 | enum layers { | ||
21 | NORMAL_LAYER = 0 | ||
22 | }; | ||
23 | |||
24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
25 | [NORMAL_LAYER] = LAYOUT( C(S(KC_F1)), C(S(KC_F2)), C(S(KC_F3)), C(S(KC_F4)), | ||
26 | C(S(KC_F5)), C(S(KC_F6)), C(S(KC_F7)), C(S(KC_F8)), | ||
27 | JS_BUTTON0, JS_BUTTON1, JS_BUTTON2, JS_BUTTON3 ), | ||
28 | }; | ||
29 | |||
30 | |||
31 | |||
32 | joystick_config_t joystick_axes[JOYSTICK_AXES_COUNT] = { | ||
33 | [0] = JOYSTICK_AXIS_IN(F4, 0, 512, 1023), | ||
34 | [1] = JOYSTICK_AXIS_IN(F5, 0, 512, 1023), | ||
35 | [2] = JOYSTICK_AXIS_IN(F6, 0, 512, 1023), | ||
36 | [3] = JOYSTICK_AXIS_IN(F7, 0, 512, 1023) | ||
37 | }; | ||
diff --git a/keyboards/handwired/misterdeck/keymaps/nobuttons/config.h b/keyboards/handwired/misterdeck/keymaps/nobuttons/config.h new file mode 100644 index 000000000..bd150139c --- /dev/null +++ b/keyboards/handwired/misterdeck/keymaps/nobuttons/config.h | |||
@@ -0,0 +1,22 @@ | |||
1 | /* | ||
2 | Copyright 2021 Chris Broekema (broekema@gmail.com) | ||
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 | |||
19 | #pragma once | ||
20 | |||
21 | #define JOYSTICK_AXES_COUNT 4 | ||
22 | #define JOYSTICK_BUTTON_COUNT 0 | ||
diff --git a/keyboards/handwired/misterdeck/keymaps/nobuttons/keymap.c b/keyboards/handwired/misterdeck/keymaps/nobuttons/keymap.c new file mode 100644 index 000000000..fbeb636cf --- /dev/null +++ b/keyboards/handwired/misterdeck/keymaps/nobuttons/keymap.c | |||
@@ -0,0 +1,37 @@ | |||
1 | /* Copyright 2021 Chris Broekema (broekema@gmail.com) | ||
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 | #include QMK_KEYBOARD_H | ||
18 | #include "joystick.h" | ||
19 | |||
20 | enum layers { | ||
21 | NORMAL_LAYER = 0 | ||
22 | }; | ||
23 | |||
24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
25 | [NORMAL_LAYER] = LAYOUT( C(S(KC_F1)), C(S(KC_F2)), C(S(KC_F3)), C(S(KC_F4)), | ||
26 | C(S(KC_F5)), C(S(KC_F6)), C(S(KC_F7)), C(S(KC_F8)), | ||
27 | C(S(KC_F9)), C(S(KC_F10)), C(S(KC_F11)), C(S(KC_F12))), | ||
28 | }; | ||
29 | |||
30 | |||
31 | |||
32 | joystick_config_t joystick_axes[JOYSTICK_AXES_COUNT] = { | ||
33 | [0] = JOYSTICK_AXIS_IN(F4, 0, 512, 1023), | ||
34 | [1] = JOYSTICK_AXIS_IN(F5, 0, 512, 1023), | ||
35 | [2] = JOYSTICK_AXIS_IN(F6, 0, 512, 1023), | ||
36 | [3] = JOYSTICK_AXIS_IN(F7, 0, 512, 1023) | ||
37 | }; | ||
diff --git a/keyboards/handwired/misterdeck/misterdeck.c b/keyboards/handwired/misterdeck/misterdeck.c new file mode 100644 index 000000000..a096e9ce9 --- /dev/null +++ b/keyboards/handwired/misterdeck/misterdeck.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* Copyright 2021 Chris Broekema (broekema@gmail.com) | ||
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 | #include "misterdeck.h" | ||
diff --git a/keyboards/handwired/misterdeck/misterdeck.h b/keyboards/handwired/misterdeck/misterdeck.h new file mode 100644 index 000000000..a86ca2c2c --- /dev/null +++ b/keyboards/handwired/misterdeck/misterdeck.h | |||
@@ -0,0 +1,29 @@ | |||
1 | /* Copyright 2021 Chris Broekema (broekema@gmail.com) | ||
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 | #define LAYOUT( \ | ||
22 | k00, k01, k02, k03, \ | ||
23 | k10, k11, k12, k13, \ | ||
24 | k20, k21, k22, k23 \ | ||
25 | ) { \ | ||
26 | { k00, k01, k02, k03 }, \ | ||
27 | { k10, k11, k12, k13 }, \ | ||
28 | { k20, k21, k22, k23 } \ | ||
29 | } | ||
diff --git a/keyboards/handwired/misterdeck/readme.md b/keyboards/handwired/misterdeck/readme.md new file mode 100644 index 000000000..b9d472319 --- /dev/null +++ b/keyboards/handwired/misterdeck/readme.md | |||
@@ -0,0 +1,21 @@ | |||
1 | # MisterDeck | ||
2 | |||
3 |  | ||
4 | |||
5 | A 3D-printed streamdeck like keyboard featuring 12 keys and 4 sliders | ||
6 | |||
7 | * Keyboard Maintainer: [Chris Broekema](https://github.com/broekema) | ||
8 | * Hardware Supported: MisteRdeck by MisteR_ofcl | ||
9 | * Hardware Availability: [Thingiverse](https://www.thingiverse.com/thing:4627779) | ||
10 | |||
11 | Make example for this keyboard (after setting up your build environment): | ||
12 | |||
13 | make handwired/misterdeck:default | ||
14 | |||
15 | Flashing example for this keyboard: | ||
16 | |||
17 | make handwired/misterdeck:default:flash | ||
18 | |||
19 | Connect a momentary switch to RST and GND, hit twice in succession to reset the board into bootloader mode. | ||
20 | |||
21 | 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). \ No newline at end of file | ||
diff --git a/keyboards/handwired/misterdeck/rules.mk b/keyboards/handwired/misterdeck/rules.mk new file mode 100644 index 000000000..c19a30931 --- /dev/null +++ b/keyboards/handwired/misterdeck/rules.mk | |||
@@ -0,0 +1,21 @@ | |||
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 = yes # Mouse keys | ||
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
13 | CONSOLE_ENABLE = yes # Console for debug | ||
14 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
15 | NKRO_ENABLE = yes # 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 | ||
19 | |||
20 | # use joystick feature for sliders | ||
21 | JOYSTICK_ENABLE = yes | ||