aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrhigsby <71532157+drhigsby@users.noreply.github.com>2021-03-04 10:15:16 -0800
committerGitHub <noreply@github.com>2021-03-04 13:15:16 -0500
commit4d416455980dc7bccdebb4f2bf571d5182ec6796 (patch)
tree29b32da34365b27750d4c90204ed1d0d16b73ae7
parentb1a8fafa62ec058470715a6930317da09d63181d (diff)
downloadqmk_firmware-4d416455980dc7bccdebb4f2bf571d5182ec6796.tar.gz
qmk_firmware-4d416455980dc7bccdebb4f2bf571d5182ec6796.zip
Dubba175 (#12077)
* dubba175 initial * Following checklist * Update readme.md * Update keyboards/dubba175/keymaps/default/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/dubba175/keymaps/default/keymap.c Co-authored-by: ridingqwerty <george.g.koenig@gmail.com> * Update keyboards/dubba175/keymaps/default/keymap.c Co-authored-by: ridingqwerty <george.g.koenig@gmail.com> * Update keyboards/dubba175/rules.mk Co-authored-by: ridingqwerty <george.g.koenig@gmail.com> * Update config.h * Update keyboards/dubba175/readme.md Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/dubba175/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/dubba175/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: ridingqwerty <george.g.koenig@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
-rw-r--r--keyboards/dubba175/config.h56
-rw-r--r--keyboards/dubba175/dubba175.c16
-rw-r--r--keyboards/dubba175/dubba175.h30
-rw-r--r--keyboards/dubba175/info.json12
-rw-r--r--keyboards/dubba175/keymaps/default/config.h19
-rw-r--r--keyboards/dubba175/keymaps/default/keymap.c92
-rw-r--r--keyboards/dubba175/keymaps/default/readme.md1
-rw-r--r--keyboards/dubba175/keymaps/default/rules.mk1
-rw-r--r--keyboards/dubba175/readme.md15
-rw-r--r--keyboards/dubba175/rules.mk23
10 files changed, 265 insertions, 0 deletions
diff --git a/keyboards/dubba175/config.h b/keyboards/dubba175/config.h
new file mode 100644
index 000000000..2eab0e269
--- /dev/null
+++ b/keyboards/dubba175/config.h
@@ -0,0 +1,56 @@
1/* Copyright 2020 drhigsby
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#pragma once
17
18#include "config_common.h"
19
20/* USB Device descriptor parameter */
21#define MANUFACTURER DrHigsby
22#define PRODUCT Dubba175
23#define VENDOR_ID 0x0420
24#define PRODUCT_ID 0x0420
25#define DEVICE_VER 0x0420
26
27/* key matrix size */
28#define MATRIX_ROWS 4
29#define MATRIX_COLS 10
30
31/*
32 * Keyboard Matrix Assignments
33 *
34 * Change this to how you wired your keyboard
35 * COLS: AVR pins used for columns, left to right
36 * ROWS: AVR pins used for rows, top to bottom
37 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
38 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
39 *
40 */
41
42/* key matrix pins */
43#define MATRIX_ROW_PINS { B1, B3, B2, B5 }
44#define MATRIX_COL_PINS { D3, D2, D1, D0, D4, C6, D7, E6, B4, B6 }
45#define UNUSED_PINS
46
47/* COL2ROW or ROW2COL */
48#define DIODE_DIRECTION COL2ROW
49
50/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
51#define DEBOUNCE 5
52
53/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
54#define LOCKING_SUPPORT_ENABLE
55/* Locking resynchronize hack */
56#define LOCKING_RESYNC_ENABLE \ No newline at end of file
diff --git a/keyboards/dubba175/dubba175.c b/keyboards/dubba175/dubba175.c
new file mode 100644
index 000000000..066e772fa
--- /dev/null
+++ b/keyboards/dubba175/dubba175.c
@@ -0,0 +1,16 @@
1/* Copyright 2020 drhigsby
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 "dubba175.h" \ No newline at end of file
diff --git a/keyboards/dubba175/dubba175.h b/keyboards/dubba175/dubba175.h
new file mode 100644
index 000000000..0413b158d
--- /dev/null
+++ b/keyboards/dubba175/dubba175.h
@@ -0,0 +1,30 @@
1/* Copyright 2020 drhigsby
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#pragma once
17
18#include "quantum.h"
19
20#define LAYOUT( \
21 k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, \
22 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, \
23 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, \
24 k302, k303, k304, k305, k306, k307 \
25) { \
26 { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009 }, \
27 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109 }, \
28 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209 }, \
29 { KC_NO, KC_NO, k302, k303, k304, k305, k306, k307, KC_NO, KC_NO } \
30}
diff --git a/keyboards/dubba175/info.json b/keyboards/dubba175/info.json
new file mode 100644
index 000000000..5f8c3f1f4
--- /dev/null
+++ b/keyboards/dubba175/info.json
@@ -0,0 +1,12 @@
1{
2 "keyboard_name": "dubba175",
3 "url": "http://www.keyboard-layout-editor.com/#/gists/3185de74dfb973bf6d42e785994cfd4e",
4 "maintainer": "drhigsby",
5 "width": 10,
6 "height": 4,
7 "layouts": {
8 "LAYOUT": {
9 "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":0, "y":1}, {"label":"", "x":1, "y":1}, {"label":"", "x":2, "y":1}, {"label":"", "x":3, "y":1}, {"label":"", "x":4, "y":1}, {"label":"", "x":5, "y":1}, {"label":"", "x":6, "y":1}, {"label":"", "x":7, "y":1}, {"label":"", "x":8, "y":1}, {"label":"", "x":9, "y":1}, {"label":"", "x":0, "y":2}, {"label":"", "x":1, "y":2}, {"label":"", "x":2, "y":2}, {"label":"", "x":3, "y":2}, {"label":"", "x":4, "y":2}, {"label":"", "x":5, "y":2}, {"label":"", "x":6, "y":2}, {"label":"<", "x":7, "y":2}, {"label":">", "x":8, "y":2}, {"label":"", "x":9, "y":2}, {"label":"", "x":1.25, "y":3}, {"label":"", "x":2.25, "y":3}, {"label":"", "x":3.25, "y":3, "w":1.75}, {"x":5, "y":3, "w":1.75}, {"label":"", "x":6.75, "y":3}, {"label":"", "x":7.75, "y":3}]
10 }
11 }
12} \ No newline at end of file
diff --git a/keyboards/dubba175/keymaps/default/config.h b/keyboards/dubba175/keymaps/default/config.h
new file mode 100644
index 000000000..7a4761b1a
--- /dev/null
+++ b/keyboards/dubba175/keymaps/default/config.h
@@ -0,0 +1,19 @@
1/* Copyright 2020 drhigsby
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#pragma once
17
18#define COMBO_COUNT 8
19#define COMBO_TERM 40
diff --git a/keyboards/dubba175/keymaps/default/keymap.c b/keyboards/dubba175/keymaps/default/keymap.c
new file mode 100644
index 000000000..e502e9498
--- /dev/null
+++ b/keyboards/dubba175/keymaps/default/keymap.c
@@ -0,0 +1,92 @@
1/* Copyright 2020 drhigsby
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
18enum layers{
19 _BASE,
20 _NUM,
21 _NAV,
22 _FN
23};
24
25enum combo_events {
26 combo_ESC,
27 combo_BACK,
28 combo_TAB,
29 combo_DELETE,
30 combo_ENTER,
31 combo_QUOT,
32 combo_LPRN,
33 combo_RPRN,
34};
35
36const uint16_t PROGMEM esc_combo[] = {KC_Q, KC_W, COMBO_END};
37const uint16_t PROGMEM bspc_combo[] = {KC_O, KC_P, COMBO_END};
38const uint16_t PROGMEM tab_combo[] = {KC_A, KC_S, COMBO_END};
39const uint16_t PROGMEM del_combo[] = {KC_Q, KC_P, COMBO_END};
40const uint16_t PROGMEM enter_combo[] = {KC_L, KC_SCLN, COMBO_END};
41const uint16_t PROGMEM quot_combo[] = {KC_P, KC_SCLN, COMBO_END};
42const uint16_t PROGMEM lprn_combo[] = {KC_X, KC_C, COMBO_END};
43const uint16_t PROGMEM rprn_combo[] = {KC_COMM, KC_DOT, COMBO_END};
44
45
46combo_t key_combos[COMBO_COUNT] = {
47 [combo_ESC] = COMBO(esc_combo, KC_ESC),
48 [combo_BACK] = COMBO(bspc_combo, KC_BSPC),
49 [combo_TAB] = COMBO(tab_combo, KC_TAB),
50 [combo_DELETE] = COMBO(del_combo, KC_DEL),
51 [combo_ENTER] = COMBO(enter_combo, KC_ENT),
52 [combo_QUOT] = COMBO(quot_combo, KC_QUOT),
53 [combo_LPRN] = COMBO(lprn_combo, KC_LPRN),
54 [combo_RPRN] = COMBO(rprn_combo, KC_RPRN),
55};
56
57#define NUM MO(_NUM)
58#define NAV MO(_NAV)
59#define FN MO(_FN)
60#define xxx KC_TRNS
61
62const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
63 [_BASE] = LAYOUT(
64 KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
65 KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,
66 LSFT_T(KC_Z), KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, RSFT_T(KC_SLSH),
67 KC_LCTL, KC_LALT, NUM, KC_SPC, NAV, FN
68 ),
69
70
71 [_NUM] = LAYOUT(
72 KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0,
73 KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_MINS, KC_EQL,
74 KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_HOME, KC_END, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT,
75 KC_PGUP, KC_PGDN, xxx, xxx, KC_PGUP, KC_PGDN
76 ),
77
78 [_NAV] = LAYOUT(
79 xxx, KC_UP, xxx, xxx, xxx, xxx, xxx, xxx, KC_UP, xxx,
80 KC_LEFT, KC_DOWN, KC_RGHT, xxx, xxx, xxx, xxx, KC_LEFT, KC_DOWN, KC_RGHT,
81 xxx, xxx, xxx, xxx, xxx, xxx, xxx, xxx, xxx, xxx,
82 xxx, xxx, xxx, xxx, xxx, xxx
83 ),
84
85 [_FN] = LAYOUT(
86 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10,
87 xxx, xxx, xxx, xxx, xxx, xxx, xxx, xxx, KC_F11, KC_F12,
88 xxx, xxx, xxx, xxx, xxx, xxx, xxx, xxx, xxx, xxx,
89 xxx, xxx, xxx, xxx, xxx, xxx
90 )
91
92};
diff --git a/keyboards/dubba175/keymaps/default/readme.md b/keyboards/dubba175/keymaps/default/readme.md
new file mode 100644
index 000000000..8e5c2c528
--- /dev/null
+++ b/keyboards/dubba175/keymaps/default/readme.md
@@ -0,0 +1 @@
# Default Dubba175 Keymap
diff --git a/keyboards/dubba175/keymaps/default/rules.mk b/keyboards/dubba175/keymaps/default/rules.mk
new file mode 100644
index 000000000..ab1e43818
--- /dev/null
+++ b/keyboards/dubba175/keymaps/default/rules.mk
@@ -0,0 +1 @@
COMBO_ENABLE = yes
diff --git a/keyboards/dubba175/readme.md b/keyboards/dubba175/readme.md
new file mode 100644
index 000000000..f8f145923
--- /dev/null
+++ b/keyboards/dubba175/readme.md
@@ -0,0 +1,15 @@
1# Dubba175
2
3![Dubba175](https://i.imgur.com/nzDZuS3h.jpg)
4
5Dubba175 is a 10u wide ortholinear keyboard featuring 2x 1.75u spacebars as the bottom row layout option.
6
7* Keyboard Maintainer: [H. Bond](https://github.com/drhigsby)
8* Hardware Supported: Dubba175 (https://github.com/drhigsby/dubba175)
9* Hardware Availability: P3DStore.com offers a stacked acrlyic case / make your own
10
11Make example for this keyboard (after setting up your build environment):
12
13 make dubba175:default
14
15See 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/dubba175/rules.mk b/keyboards/dubba175/rules.mk
new file mode 100644
index 000000000..f9c2a3c5e
--- /dev/null
+++ b/keyboards/dubba175/rules.mk
@@ -0,0 +1,23 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5BOOTLOADER = caterina
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration
11MOUSEKEY_ENABLE = yes # Mouse keys
12EXTRAKEY_ENABLE = yes # Audio control and System control
13CONSOLE_ENABLE = no # Console for debug
14COMMAND_ENABLE = no # Commands for debug and configuration
15# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
16SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
17# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
18NKRO_ENABLE = yes # USB Nkey Rollover
19BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
20RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
21BLUETOOTH_ENABLE = no # Enable Bluetooth
22AUDIO_ENABLE = no # Audio output
23LTO_ENABLE = no # Use link time optimization