Skip to content

Commit 2b55587

Browse files
doesntfazerwaffle87fauxparkdrashna
authored andcommitted
[Keyboard] Add Budgy and Crowboard Keyboards (qmk#19141)
Co-authored-by: jack <[email protected]> Co-authored-by: Ryan <[email protected]> Co-authored-by: Drashna Jaelre <[email protected]>
1 parent 4c825e1 commit 2b55587

File tree

11 files changed

+311
-0
lines changed

11 files changed

+311
-0
lines changed

keyboards/budgy/config.h

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright 2022 KeyboardDweebs (@doesntfazer)
2+
// SPDX-License-Identifier: GPL-2.0-or-later
3+
4+
#pragma once
5+
6+
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
7+
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
8+
9+
10+
#define SERIAL_USART_FULL_DUPLEX
11+
#define SERIAL_USART_TX_PIN GP1
12+
#define SERIAL_USART_RX_PIN GP0
13+
14+
// #define SERIAL_USART_PIN_SWAP

keyboards/budgy/info.json

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"manufacturer": "KeyboardDweebs",
3+
"keyboard_name": "budgy",
4+
"maintainer": "doesntfazer",
5+
"bootloader": "rp2040",
6+
"features": {
7+
"bootmagic": true,
8+
"command": false,
9+
"console": false,
10+
"extrakey": true,
11+
"mousekey": true,
12+
"nkro": true
13+
},
14+
"processor": "RP2040",
15+
"url": "",
16+
"usb": {
17+
"device_version": "1.0.0",
18+
"pid": "0x0117",
19+
"vid": "0xFABE"
20+
},
21+
"matrix_pins": {
22+
"direct": [
23+
["GP6", "GP5", "GP4", "GP3", "GP2"],
24+
["GP11", "GP10", "GP9", "GP8", "GP7"],
25+
["GP15", "GP14", "GP13", "GP12", "GP16"],
26+
["GP17", "GP18", null, null, null]
27+
]
28+
},
29+
"split": {
30+
"matrix_pins": {
31+
"right": {
32+
"direct": [
33+
["GP2", "GP3", "GP4", "GP5", "GP6"],
34+
["GP7", "GP8", "GP9", "GP10", "GP11"],
35+
["GP16", "GP12", "GP13", "GP14", "GP15"],
36+
["GP18", "GP17", null, null, null]
37+
]
38+
}
39+
}
40+
},
41+
"layouts": {
42+
"LAYOUT_split_3x5_2": {
43+
"layout": [
44+
{ "matrix": [0, 0], "x": 0, "y": 0.25 },
45+
{ "matrix": [0, 1], "x": 1, "y": 0.25 },
46+
{ "matrix": [0, 2], "x": 2, "y": 0.125 },
47+
{ "matrix": [0, 3], "x": 3, "y": 0 },
48+
{ "matrix": [0, 4], "x": 4, "y": 0.125 },
49+
{ "matrix": [4, 0], "x": 8, "y": 0.25 },
50+
{ "matrix": [4, 1], "x": 9, "y": 0.125 },
51+
{ "matrix": [4, 2], "x": 10, "y": 0 },
52+
{ "matrix": [4, 3], "x": 11, "y": 0.125 },
53+
{ "matrix": [4, 4], "x": 12, "y": 0.25 },
54+
{ "matrix": [1, 0], "x": 0, "y": 1.25 },
55+
{ "matrix": [1, 1], "x": 1, "y": 1.25 },
56+
{ "matrix": [1, 2], "x": 2, "y": 1.125 },
57+
{ "matrix": [1, 3], "x": 3, "y": 1 },
58+
{ "matrix": [1, 4], "x": 4, "y": 1.125 },
59+
{ "matrix": [5, 0], "x": 8, "y": 1.25 },
60+
{ "matrix": [5, 1], "x": 9, "y": 1.125 },
61+
{ "matrix": [5, 2], "x": 10, "y": 1 },
62+
{ "matrix": [5, 3], "x": 11, "y": 1.125 },
63+
{ "matrix": [5, 4], "x": 12, "y": 1.25 },
64+
{ "matrix": [2, 0], "x": 0, "y": 2.25 },
65+
{ "matrix": [2, 1], "x": 1, "y": 2.25 },
66+
{ "matrix": [2, 2], "x": 2, "y": 2.125 },
67+
{ "matrix": [2, 3], "x": 3, "y": 2 },
68+
{ "matrix": [2, 4], "x": 4, "y": 2.125 },
69+
{ "matrix": [6, 0], "x": 8, "y": 2.25 },
70+
{ "matrix": [6, 1], "x": 9, "y": 2.125 },
71+
{ "matrix": [6, 2], "x": 10, "y": 2 },
72+
{ "matrix": [6, 3], "x": 11, "y": 2.125 },
73+
{ "matrix": [6, 4], "x": 12, "y": 2.25 },
74+
{ "matrix": [3, 0], "x": 3.5, "y": 3.25 },
75+
{ "matrix": [3, 1], "x": 4.5, "y": 3.5 },
76+
{ "matrix": [7, 0], "x": 7.5, "y": 3.75 },
77+
{ "matrix": [7, 1], "x": 8.5, "y": 3.5 }
78+
]
79+
}
80+
}
81+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Copyright 2021 Keyboard Dweebs (@doesntfazer)
2+
// SPDX-License-Identifier: GPL-2.0-or-later
3+
#include QMK_KEYBOARD_H
4+
5+
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
6+
/*
7+
* ┌───┬───┬───┬───┬───┐ ┌───┬───┬───┬───┬───┐
8+
* │ Q │ W │ E │ R │ T │ │ Y │ U │ I │ O │ P │
9+
* ├───┼───┼───┼───┼───┤ ├───┼───┼───┼───┼───┤
10+
* │ A │ S │ D │ F │ G │ │ H │ J │ K │ L │ ; │
11+
* ├───┼───┼───┼───┼───┤ ├───┼───┼───┼───┼───┤
12+
* │ Z │ X │ C │ V │ B │ │ N │ M │ , │ . │ / │
13+
* └───┴───┴───┴───┴───┘ └───┴───┴───┴───┴───┘
14+
* ┌───┐ ┌───┐
15+
* │Bsp├───┐ ┌───┤Ent│
16+
* └───┤Tab│ │Spc├───┘
17+
* └───┘ └───┘
18+
*/
19+
[0] = LAYOUT_split_3x5_2(
20+
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
21+
KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,
22+
KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
23+
KC_BSPC, KC_TAB, KC_SPC, KC_ENT
24+
)
25+
};

keyboards/budgy/readme.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# budgy
2+
3+
![budgy](https://i.imgur.com/6kjxmSMh.jpeg)
4+
5+
34 key, diodeless, RP2040 based, budget keyboard.
6+
7+
* Keyboard Maintainer: [KeyboardDweebs](https://github.com/doesntfazer)
8+
* Hardware Supported: Raspberry Pi Pico
9+
* Hardware Availability: [Github Page](https://github.com/doesntfazer/Budgy) Buy Directly from [Keyboard Dweebs](https://keyboarddweebs.net/)
10+
11+
Make example for this keyboard (after setting up your build environment):
12+
13+
make budgy:default
14+
15+
Flashing example for this keyboard:
16+
17+
make budgy:default:flash
18+
19+
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).
20+
21+
## Bootloader
22+
23+
Enter the bootloader in 3 ways:
24+
25+
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
26+
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
27+
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

keyboards/budgy/rules.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
SPLIT_KEYBOARD = yes
2+
SERIAL_DRIVER = vendor

keyboards/crowboard/info.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"manufacturer": "KeyboardDweebs",
3+
"keyboard_name": "crowboard",
4+
"maintainer": "doesntfazer",
5+
"bootloader": "rp2040",
6+
"diode_direction": "COL2ROW",
7+
"features": {
8+
"bootmagic": true,
9+
"mousekey": true,
10+
"extrakey": true,
11+
"nkro": true
12+
},
13+
"matrix_pins": {
14+
"cols": ["GP6", "GP7", "GP8", "GP9", "GP10", "GP18", "GP19", "GP20", "GP21", "GP22"],
15+
"rows": ["GP14", "GP15", "GP16", "GP17"]
16+
},
17+
"processor": "RP2040",
18+
"url": "",
19+
"usb": {
20+
"device_version": "1.0.0",
21+
"pid": "0x0000",
22+
"vid": "0xFEED"
23+
},
24+
"layouts": {
25+
"LAYOUT": {
26+
"layout": [
27+
{ "matrix": [0, 0], "x": 0, "y": 0 },
28+
{ "matrix": [0, 1], "x": 1, "y": 0 },
29+
{ "matrix": [0, 2], "x": 2, "y": 0 },
30+
{ "matrix": [0, 3], "x": 3, "y": 0 },
31+
{ "matrix": [0, 4], "x": 4, "y": 0 },
32+
{ "matrix": [0, 5], "x": 5, "y": 0 },
33+
{ "matrix": [0, 6], "x": 6, "y": 0 },
34+
{ "matrix": [0, 7], "x": 7, "y": 0 },
35+
{ "matrix": [0, 8], "x": 8, "y": 0 },
36+
{ "matrix": [0, 9], "x": 9, "y": 0 },
37+
{ "matrix": [1, 0], "x": 0, "y": 1 },
38+
{ "matrix": [1, 1], "x": 1, "y": 1 },
39+
{ "matrix": [1, 2], "x": 2, "y": 1 },
40+
{ "matrix": [1, 3], "x": 3, "y": 1 },
41+
{ "matrix": [1, 4], "x": 4, "y": 1 },
42+
{ "matrix": [1, 5], "x": 5, "y": 1 },
43+
{ "matrix": [1, 6], "x": 6, "y": 1 },
44+
{ "matrix": [1, 7], "x": 7, "y": 1 },
45+
{ "matrix": [1, 8], "x": 8, "y": 1 },
46+
{ "matrix": [1, 9], "x": 9, "y": 1 },
47+
{ "matrix": [2, 0], "x": 0, "y": 2 },
48+
{ "matrix": [2, 1], "x": 1, "y": 2 },
49+
{ "matrix": [2, 2], "x": 2, "y": 2 },
50+
{ "matrix": [2, 3], "x": 3, "y": 2 },
51+
{ "matrix": [2, 4], "x": 4, "y": 2 },
52+
{ "matrix": [2, 5], "x": 5, "y": 2 },
53+
{ "matrix": [2, 6], "x": 6, "y": 2 },
54+
{ "matrix": [2, 7], "x": 7, "y": 2 },
55+
{ "matrix": [2, 8], "x": 8, "y": 2 },
56+
{ "matrix": [2, 9], "x": 9, "y": 2 },
57+
{ "matrix": [3, 2], "x": 2, "y": 3 },
58+
{ "matrix": [3, 3], "x": 3, "y": 3 },
59+
{ "matrix": [3, 4], "x": 4, "y": 3 },
60+
{ "matrix": [3, 5], "x": 5, "y": 3 },
61+
{ "matrix": [3, 6], "x": 6, "y": 3 },
62+
{ "matrix": [3, 7], "x": 7, "y": 3 }
63+
]
64+
}
65+
}
66+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Copyright 2022 doesntfazer (@doesntfazer)
2+
// SPDX-License-Identifier: GPL-2.0-or-later
3+
4+
#pragma once
5+
6+
#define HOLD_ON_OTHER_KEY_PRESS_PER_KEY
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
// Copyright 2021 Keyboard Dweebs (@doesntfazer)
2+
// SPDX-License-Identifier: GPL-2.0-or-later
3+
#include QMK_KEYBOARD_H
4+
5+
#define CTLA LCTL(KC_A)
6+
#define CAE LCTL(LALT(KC_END))
7+
#define CAD LCTL(LALT(KC_DEL))
8+
9+
enum crow_layers {
10+
_QWERTY,
11+
_LOWER,
12+
_RAISE,
13+
_ADJUST,
14+
};
15+
16+
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
17+
18+
[_QWERTY] = LAYOUT (
19+
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
20+
LCTL_T(KC_A), KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_QUOT,
21+
LSFT_T(KC_Z), KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, RSFT_T(KC_SLSH),
22+
KC_LCTL, TL_LOWR, KC_SPACE, KC_BSPC, TL_UPPR, KC_RALT
23+
),
24+
25+
[_LOWER] = LAYOUT (
26+
KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0,
27+
KC_TAB, KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT, KC_TRNS, KC_MINUS, KC_EQUAL, KC_LBRC, KC_RBRC,
28+
KC_LCTL, KC_GRAVE, KC_LGUI, KC_LALT, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_BSLS, KC_SCLN,
29+
KC_TRNS, TL_LOWR, KC_TRNS, KC_ENTER, TL_UPPR, KC_TRNS
30+
),
31+
[_RAISE] = LAYOUT (
32+
KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN,
33+
KC_ESC, KC_DEL, CTLA, KC_TRNS, KC_TRNS, KC_TRNS, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR,
34+
KC_CAPS, KC_TILDE, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PIPE, KC_COLN,
35+
KC_TRNS, TL_LOWR, KC_TRNS, KC_TRNS, TL_UPPR, KC_TRNS
36+
),
37+
[_ADJUST] = LAYOUT (
38+
KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10,
39+
KC_F11, KC_F12, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, CAD, CAE, CAD, CAD,
40+
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
41+
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
42+
),
43+
};
44+
45+
46+
bool get_hold_on_other_key_press(uint16_t keycode, keyrecord_t *record) {
47+
switch (keycode) {
48+
case LCTL_T(KC_A):
49+
// Do not force the mod-tap key press to be handled as a modifier
50+
// if any other key was pressed while the mod-tap key is held down.
51+
return false;
52+
default:
53+
// Force the mod-tap key press to be handled as a modifier if any
54+
// other key was pressed while the mod-tap key is held down.
55+
return true;
56+
}
57+
}
58+
59+
60+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TRI_LAYER_ENABLE = yes

keyboards/crowboard/readme.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# crowboard
2+
3+
![crowboard](https://i.imgur.com/Rg7IYPwh.jpg)
4+
5+
RP2040 based 36 key keyboard
6+
7+
* Keyboard Maintainer: [doesntfazer](https://github.com/doesntfazer)
8+
* Hardware Supported: Raspberry Pi Pico
9+
* Hardware Availability: keyboarddweebs.net
10+
11+
## Bootloader
12+
13+
Enter the bootloader in 2 ways:
14+
15+
* **Physical reset button**: Hold the button down on the raspberry pi pico while plugging it in. There is no reset button on the pcb.
16+
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
17+
18+
Make example for this keyboard (after setting up your build environment):
19+
20+
make crowboard:default
21+
22+
Flashing example for this keyboard:
23+
24+
make crowboard:default:flash
25+
26+
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+
28+

keyboards/crowboard/rules.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
PICO_INTRINSICS_ENABLED = no # ATM Unsupported by ChibiOS!

0 commit comments

Comments
 (0)