aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDao Tak Isaac <daotran0940@gmail.com>2021-08-14 01:30:43 +0700
committerGitHub <noreply@github.com>2021-08-13 11:30:43 -0700
commit2c9957eb7e6e8085226293e8ff60846587b937b9 (patch)
tree720e9eed5772cd38f8a22338c7d879bd96699764
parentf00e56eb0b4e8ab220d52a30f89f3a9213d431fa (diff)
downloadqmk_firmware-2c9957eb7e6e8085226293e8ff60846587b937b9.tar.gz
qmk_firmware-2c9957eb7e6e8085226293e8ff60846587b937b9.zip
[Keyboard] Add dtisaac01 keyboard (#13967)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
-rw-r--r--keyboards/handwired/dtisaac01/config.h95
-rw-r--r--keyboards/handwired/dtisaac01/dtisaac01.c17
-rw-r--r--keyboards/handwired/dtisaac01/dtisaac01.h49
-rw-r--r--keyboards/handwired/dtisaac01/info.json100
-rw-r--r--keyboards/handwired/dtisaac01/keymaps/default/keymap.c47
-rw-r--r--keyboards/handwired/dtisaac01/keymaps/default/readme.md1
-rw-r--r--keyboards/handwired/dtisaac01/readme.md19
-rw-r--r--keyboards/handwired/dtisaac01/rules.mk22
8 files changed, 350 insertions, 0 deletions
diff --git a/keyboards/handwired/dtisaac01/config.h b/keyboards/handwired/dtisaac01/config.h
new file mode 100644
index 000000000..f417d6449
--- /dev/null
+++ b/keyboards/handwired/dtisaac01/config.h
@@ -0,0 +1,95 @@
1/*
2Copyright 2021 DTIsaac
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along 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 0x4454
24#define PRODUCT_ID 0x4973
25#define DEVICE_VER 0x0001
26#define MANUFACTURER DTIsaac
27#define PRODUCT dtisaac01
28
29/* key matrix size */
30#define MATRIX_ROWS 12
31#define MATRIX_COLS 9
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 { F7, F6, F5, F4, F1, B4, D2, B2, B1, B3, D4, D6 }
44#define MATRIX_COL_PINS { C7, C6, D0, B5, F0, D7, B0, B7, D1 }
45#define UNUSED_PINS
46
47/* COL2ROW, ROW2COL */
48#define DIODE_DIRECTION ROW2COL
49
50#define LED_CAPS_LOCK_PIN D3
51#define LED_SCROLL_LOCK_PIN D5
52#define LED_PIN_ON_STATE 0
53
54
55#define BACKLIGHT_PIN B6
56#define BACKLIGHT_LEVELS 3
57#define BACKLIGHT_BREATHING
58
59/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
60#define DEBOUNCE 5
61
62
63/*
64 * Force NKRO
65 *
66 * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
67 * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
68 * makefile for this to work.)
69 *
70 * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
71 * until the next keyboard reset.
72 *
73 * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
74 * fully operational during normal computer usage.
75 *
76 * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
77 * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
78 * bootmagic, NKRO mode will always be enabled until it is toggled again during a
79 * power-up.
80 *
81 */
82//#define FORCE_NKRO
83
84/*
85 * Feature disable options
86 * These options are also useful to firmware size reduction.
87 */
88
89/* disable these deprecated features by default */
90//#define NO_ACTION_MACRO
91//#define NO_ACTION_FUNCTION
92
93/* Bootmagic Lite key configuration */
94//#define BOOTMAGIC_LITE_ROW 0
95//#define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/handwired/dtisaac01/dtisaac01.c b/keyboards/handwired/dtisaac01/dtisaac01.c
new file mode 100644
index 000000000..b11920280
--- /dev/null
+++ b/keyboards/handwired/dtisaac01/dtisaac01.c
@@ -0,0 +1,17 @@
1/* Copyright 2021 DTIsaac
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 "dtisaac01.h"
diff --git a/keyboards/handwired/dtisaac01/dtisaac01.h b/keyboards/handwired/dtisaac01/dtisaac01.h
new file mode 100644
index 000000000..e017c6570
--- /dev/null
+++ b/keyboards/handwired/dtisaac01/dtisaac01.h
@@ -0,0 +1,49 @@
1/* Copyright 2021 DTIsaac
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 is 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 K000, K001, K002, K003, K004, K005, K006, K007, K008, K058, K061, K062, K063, K064, K065, K066, \
31 K010, K011, K012, K013, K014, K015, K016, K017, K018, K068, K060, K071, K072, K073, K074, K075, K076, \
32 K020, K021, K022, K023, K024, K025, K026, K027, K028, K078, K070, K081, K082, K083, K084, K085, K086, \
33 K030, K031, K032, K033, K034, K035, K036, K037, K038, K088, K080, K091, K093, \
34 K040, K042, K043, K044, K045, K046, K047, K048, K098, K090, K101, K103, K105, \
35 K050, K051, K052, K056, K100, K111, K112, K113, K114, K115, K116 \
36) { \
37 { K000, K001, K002, K003, K004, K005, K006, K007, K008 }, \
38 { K010, K011, K012, K013, K014, K015, K016, K017, K018 }, \
39 { K020, K021, K022, K023, K024, K025, K026, K027, K028 }, \
40 { K030, K031, K032, K033, K034, K035, K036, K037, K038 }, \
41 { K040, KC_NO, K042, K043, K044, K045, K046, K047, K048 }, \
42 { K050, K051, K052, KC_NO, KC_NO, KC_NO, K056, KC_NO, K058 }, \
43 { K060, K061, K062, K063, K064, K065, K066, KC_NO, K068 }, \
44 { K070, K071, K072, K073, K074, K075, K076, KC_NO, K078 }, \
45 { K080, K081, K082, K083, K084, K085, K086, KC_NO, K088 }, \
46 { K090, K091, KC_NO, K093, KC_NO, KC_NO, KC_NO, KC_NO, K098 }, \
47 { K100, K101, KC_NO, K103, KC_NO, K105, KC_NO, KC_NO, KC_NO }, \
48 { KC_NO, K111, K112, K113, K114, K115, K116, KC_NO, KC_NO } \
49}
diff --git a/keyboards/handwired/dtisaac01/info.json b/keyboards/handwired/dtisaac01/info.json
new file mode 100644
index 000000000..76681389a
--- /dev/null
+++ b/keyboards/handwired/dtisaac01/info.json
@@ -0,0 +1,100 @@
1{
2 "keyboard_name": "dtisaac01",
3 "url": "",
4 "maintainer": "DTIsaac",
5 "width": 18.25,
6 "height": 6.5,
7 "layouts": {
8 "LAYOUT": {
9 "layout": [
10 {"label":"K000", "x":0, "y":0},
11 {"label":"K001", "x":2, "y":0},
12 {"label":"K002", "x":3, "y":0},
13 {"label":"K003", "x":4, "y":0},
14 {"label":"K004", "x":5, "y":0},
15 {"label":"K005", "x":6.5, "y":0},
16 {"label":"K006", "x":7.5, "y":0},
17 {"label":"K007", "x":8.5, "y":0},
18 {"label":"K008", "x":9.5, "y":0},
19 {"label":"K058", "x":11, "y":0},
20 {"label":"K061", "x":12, "y":0},
21 {"label":"K062", "x":13, "y":0},
22 {"label":"K063", "x":14, "y":0},
23 {"label":"K064", "x":15.25, "y":0},
24 {"label":"K065", "x":16.25, "y":0},
25 {"label":"K066", "x":17.25, "y":0},
26 {"label":"K010", "x":0, "y":1.5},
27 {"label":"K011", "x":1, "y":1.5},
28 {"label":"K012", "x":2, "y":1.5},
29 {"label":"K013", "x":3, "y":1.5},
30 {"label":"K014", "x":4, "y":1.5},
31 {"label":"K015", "x":5, "y":1.5},
32 {"label":"K016", "x":6, "y":1.5},
33 {"label":"K017", "x":7, "y":1.5},
34 {"label":"K018", "x":8, "y":1.5},
35 {"label":"K068", "x":9, "y":1.5},
36 {"label":"K060", "x":10, "y":1.5},
37 {"label":"K071", "x":11, "y":1.5},
38 {"label":"K072", "x":12, "y":1.5},
39 {"label":"K073", "x":13, "y":1.5, "w":2},
40 {"label":"K074", "x":15.25, "y":1.5},
41 {"label":"K075", "x":16.25, "y":1.5},
42 {"label":"K076", "x":17.25, "y":1.5},
43 {"label":"K020", "x":0, "y":2.5, "w":1.5},
44 {"label":"K021", "x":1.5, "y":2.5},
45 {"label":"K022", "x":2.5, "y":2.5},
46 {"label":"K023", "x":3.5, "y":2.5},
47 {"label":"K024", "x":4.5, "y":2.5},
48 {"label":"K025", "x":5.5, "y":2.5},
49 {"label":"K026", "x":6.5, "y":2.5},
50 {"label":"K027", "x":7.5, "y":2.5},
51 {"label":"K028", "x":8.5, "y":2.5},
52 {"label":"K078", "x":9.5, "y":2.5},
53 {"label":"K070", "x":10.5, "y":2.5},
54 {"label":"K081", "x":11.5, "y":2.5},
55 {"label":"K082", "x":12.5, "y":2.5},
56 {"label":"K083", "x":13.5, "y":2.5, "w":1.5},
57 {"label":"K084", "x":15.25, "y":2.5},
58 {"label":"K085", "x":16.25, "y":2.5},
59 {"label":"K086", "x":17.25, "y":2.5},
60 {"label":"K030", "x":0, "y":3.5, "w":1.75},
61 {"label":"K031", "x":1.75, "y":3.5},
62 {"label":"K032", "x":2.75, "y":3.5},
63 {"label":"K033", "x":3.75, "y":3.5},
64 {"label":"K034", "x":4.75, "y":3.5},
65 {"label":"K035", "x":5.75, "y":3.5},
66 {"label":"K036", "x":6.75, "y":3.5},
67 {"label":"K037", "x":7.75, "y":3.5},
68 {"label":"K038", "x":8.75, "y":3.5},
69 {"label":"K088", "x":9.75, "y":3.5},
70 {"label":"K080", "x":10.75, "y":3.5},
71 {"label":"K091", "x":11.75, "y":3.5},
72 {"label":"K093", "x":12.75, "y":3.5, "w":2.25},
73 {"label":"K040", "x":0, "y":4.5, "w":2.25},
74 {"label":"K042", "x":2.25, "y":4.5},
75 {"label":"K043", "x":3.25, "y":4.5},
76 {"label":"K044", "x":4.25, "y":4.5},
77 {"label":"K045", "x":5.25, "y":4.5},
78 {"label":"K046", "x":6.25, "y":4.5},
79 {"label":"K047", "x":7.25, "y":4.5},
80 {"label":"K048", "x":8.25, "y":4.5},
81 {"label":"K098", "x":9.25, "y":4.5},
82 {"label":"K090", "x":10.25, "y":4.5},
83 {"label":"K101", "x":11.25, "y":4.5},
84 {"label":"K103", "x":12.25, "y":4.5, "w":2.75},
85 {"label":"K105", "x":16.25, "y":4.5},
86 {"label":"K050", "x":0, "y":5.5, "w":1.25},
87 {"label":"K051", "x":1.25, "y":5.5, "w":1.25},
88 {"label":"K052", "x":2.5, "y":5.5, "w":1.25},
89 {"label":"K056", "x":3.75, "y":5.5, "w":6.25},
90 {"label":"K100", "x":10, "y":5.5, "w":1.25},
91 {"label":"K111", "x":11.25, "y":5.5, "w":1.25},
92 {"label":"K112", "x":12.5, "y":5.5, "w":1.25},
93 {"label":"K113", "x":13.75, "y":5.5, "w":1.25}
94 {"label":"K114", "x":15.25, "y":5.5},
95 {"label":"K115", "x":16.25, "y":5.5},
96 {"label":"K116", "x":17.25, "y":5.5},
97 ]
98 }
99 }
100}
diff --git a/keyboards/handwired/dtisaac01/keymaps/default/keymap.c b/keyboards/handwired/dtisaac01/keymaps/default/keymap.c
new file mode 100644
index 000000000..15d0f2374
--- /dev/null
+++ b/keyboards/handwired/dtisaac01/keymaps/default/keymap.c
@@ -0,0 +1,47 @@
1/* Copyright 2021 DTIsaac
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// Defines names for use in layer keycodes and the keymap
19enum layer_names {
20 _BASE,
21 _FN
22};
23
24const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
25 [_BASE] = LAYOUT(
26 KC_ESC, 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_PSCR, KC_SLCK, KC_PAUS,
27 KC_GRV, 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_BSPC, KC_INS, KC_HOME, KC_PGUP,
28 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_DEL, KC_END, KC_PGDN,
29 KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
30 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
31 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, LT(1, KC_NO), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
32 ),
33 [_FN] = LAYOUT(
34 RESET, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
35 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
36 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
37 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
38 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
39 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
40 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, KC_TRNS, KC_TRNS,
42 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
43 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
44 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
45 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
46 )
47}; \ No newline at end of file
diff --git a/keyboards/handwired/dtisaac01/keymaps/default/readme.md b/keyboards/handwired/dtisaac01/keymaps/default/readme.md
new file mode 100644
index 000000000..0407ae233
--- /dev/null
+++ b/keyboards/handwired/dtisaac01/keymaps/default/readme.md
@@ -0,0 +1 @@
# The default keymap for dtisaac01
diff --git a/keyboards/handwired/dtisaac01/readme.md b/keyboards/handwired/dtisaac01/readme.md
new file mode 100644
index 000000000..bf37c4dd2
--- /dev/null
+++ b/keyboards/handwired/dtisaac01/readme.md
@@ -0,0 +1,19 @@
1# dtisaac01
2
3![dtisaac01](https://i.imgur.com/BoKW4uEh.jpg)
4
5A 87 percent keyboard DTIsaac01 version
6
7* Keyboard Maintainer: [DTIsaac](https://github.com/daotakisaac)
8* Hardware Supported: dtisaac01-atmega32U4
9* Hardware Availability: dtisaac01-atmega32U4
10
11Make example for this keyboard (after setting up your build environment):
12
13 make dtisaac01:default
14
15Flashing example for this keyboard:
16
17 make dtisaac01:default:flash
18
19See 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/handwired/dtisaac01/rules.mk b/keyboards/handwired/dtisaac01/rules.mk
new file mode 100644
index 000000000..41fd30dec
--- /dev/null
+++ b/keyboards/handwired/dtisaac01/rules.mk
@@ -0,0 +1,22 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5BOOTLOADER = atmel-dfu
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = lite # 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 = no # USB Nkey Rollover
19BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
20RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
21BLUETOOTH_ENABLE = no # Enable Bluetooth
22AUDIO_ENABLE = no # Audio output