diff options
| author | QMK Bot <hello@qmk.fm> | 2023-10-27 08:23:43 +0000 |
|---|---|---|
| committer | QMK Bot <hello@qmk.fm> | 2023-10-27 08:23:43 +0000 |
| commit | 64d1ce751fa455a9918e7b93a18dde9479beba2f (patch) | |
| tree | 0cfc8a8b817663b3202fa167d58d894362de80b5 | |
| parent | 33a4075930333af12c10fa20693b40c1b5fd09f7 (diff) | |
| parent | 18ef3da8e87c8f8e5a02a44da2cab5e734b5dc04 (diff) | |
Merge remote-tracking branch 'origin/master' into develop
| -rw-r--r-- | keyboards/millet/doksin/info.json | 31 | ||||
| -rw-r--r-- | keyboards/millet/doksin/keymaps/default/keymap.c | 22 | ||||
| -rw-r--r-- | keyboards/millet/doksin/keymaps/default/readme.md | 1 | ||||
| -rw-r--r-- | keyboards/millet/doksin/keymaps/via/keymap.c | 23 | ||||
| -rw-r--r-- | keyboards/millet/doksin/keymaps/via/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/millet/doksin/readme.md | 19 | ||||
| -rw-r--r-- | keyboards/millet/doksin/rules.mk | 0 |
7 files changed, 97 insertions, 0 deletions
diff --git a/keyboards/millet/doksin/info.json b/keyboards/millet/doksin/info.json new file mode 100644 index 0000000000..7a848662cd --- /dev/null +++ b/keyboards/millet/doksin/info.json | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | { | ||
| 2 | "manufacturer": "millet", | ||
| 3 | "keyboard_name": "doksin", | ||
| 4 | "maintainer": "millet", | ||
| 5 | "bootloader": "atmel-dfu", | ||
| 6 | "features": { | ||
| 7 | "bootmagic": true, | ||
| 8 | "extrakey": true, | ||
| 9 | "mousekey": true | ||
| 10 | }, | ||
| 11 | "matrix_pins": { | ||
| 12 | "direct": [ | ||
| 13 | ["D4"] | ||
| 14 | ] | ||
| 15 | }, | ||
| 16 | "processor": "atmega32u2", | ||
| 17 | "url": "", | ||
| 18 | "usb": { | ||
| 19 | "device_version": "0.0.1", | ||
| 20 | "pid": "0x1919", | ||
| 21 | "vid": "0xBDD1" | ||
| 22 | }, | ||
| 23 | "community_layouts": ["ortho_1x1"], | ||
| 24 | "layouts": { | ||
| 25 | "LAYOUT_ortho_1x1": { | ||
| 26 | "layout": [ | ||
| 27 | {"matrix": [0, 0], "x": 0, "y": 0} | ||
| 28 | ] | ||
| 29 | } | ||
| 30 | } | ||
| 31 | } \ No newline at end of file | ||
diff --git a/keyboards/millet/doksin/keymaps/default/keymap.c b/keyboards/millet/doksin/keymaps/default/keymap.c new file mode 100644 index 0000000000..2d9e565f3a --- /dev/null +++ b/keyboards/millet/doksin/keymaps/default/keymap.c | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* Copyright 2019 Biacco42 | ||
| 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_ortho_1x1( | ||
| 20 | KC_1 | ||
| 21 | ), | ||
| 22 | }; | ||
diff --git a/keyboards/millet/doksin/keymaps/default/readme.md b/keyboards/millet/doksin/keymaps/default/readme.md new file mode 100644 index 0000000000..5ddd4572c4 --- /dev/null +++ b/keyboards/millet/doksin/keymaps/default/readme.md | |||
| @@ -0,0 +1 @@ | |||
| # default keymap for DOKSIN \ No newline at end of file | |||
diff --git a/keyboards/millet/doksin/keymaps/via/keymap.c b/keyboards/millet/doksin/keymaps/via/keymap.c new file mode 100644 index 0000000000..56d8f97084 --- /dev/null +++ b/keyboards/millet/doksin/keymaps/via/keymap.c | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | /* Copyright 2019 Biacco42 | ||
| 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_ortho_1x1( /* Base */ | ||
| 20 | KC_1 | ||
| 21 | ), | ||
| 22 | |||
| 23 | }; | ||
diff --git a/keyboards/millet/doksin/keymaps/via/rules.mk b/keyboards/millet/doksin/keymaps/via/rules.mk new file mode 100644 index 0000000000..1e5b99807c --- /dev/null +++ b/keyboards/millet/doksin/keymaps/via/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| VIA_ENABLE = yes | |||
diff --git a/keyboards/millet/doksin/readme.md b/keyboards/millet/doksin/readme.md new file mode 100644 index 0000000000..175416eb8b --- /dev/null +++ b/keyboards/millet/doksin/readme.md | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | # DOKСИН | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | Can be used as a keyboard... | ||
| 6 | |||
| 7 | * Keyboard Maintainer: [millet](https://github.com/milletmilletmilletmilletmilletmilletmil) | ||
| 8 | * Hardware Supported: The DOKСИН PCB | ||
| 9 | * Hardware Availability: None | ||
| 10 | |||
| 11 | Make example for this keyboard (after setting up your build environment): | ||
| 12 | |||
| 13 | make millet/doksin:default | ||
| 14 | |||
| 15 | Flashing example for this keyboard: | ||
| 16 | |||
| 17 | make millet/doksin: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). | ||
diff --git a/keyboards/millet/doksin/rules.mk b/keyboards/millet/doksin/rules.mk new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/keyboards/millet/doksin/rules.mk | |||
