[Keyboard] doksin (#22220)
This commit is contained in:
parent
ae2703b69b
commit
18ef3da8e8
7 changed files with 97 additions and 0 deletions
31
keyboards/millet/doksin/info.json
Normal file
31
keyboards/millet/doksin/info.json
Normal file
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"manufacturer": "millet",
|
||||
"keyboard_name": "doksin",
|
||||
"maintainer": "millet",
|
||||
"bootloader": "atmel-dfu",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"direct": [
|
||||
["D4"]
|
||||
]
|
||||
},
|
||||
"processor": "atmega32u2",
|
||||
"url": "",
|
||||
"usb": {
|
||||
"device_version": "0.0.1",
|
||||
"pid": "0x1919",
|
||||
"vid": "0xBDD1"
|
||||
},
|
||||
"community_layouts": ["ortho_1x1"],
|
||||
"layouts": {
|
||||
"LAYOUT_ortho_1x1": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
22
keyboards/millet/doksin/keymaps/default/keymap.c
Normal file
22
keyboards/millet/doksin/keymaps/default/keymap.c
Normal file
|
@ -0,0 +1,22 @@
|
|||
/* Copyright 2019 Biacco42
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT_ortho_1x1(
|
||||
KC_1
|
||||
),
|
||||
};
|
1
keyboards/millet/doksin/keymaps/default/readme.md
Normal file
1
keyboards/millet/doksin/keymaps/default/readme.md
Normal file
|
@ -0,0 +1 @@
|
|||
# default keymap for DOKSIN
|
23
keyboards/millet/doksin/keymaps/via/keymap.c
Normal file
23
keyboards/millet/doksin/keymaps/via/keymap.c
Normal file
|
@ -0,0 +1,23 @@
|
|||
/* Copyright 2019 Biacco42
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT_ortho_1x1( /* Base */
|
||||
KC_1
|
||||
),
|
||||
|
||||
};
|
1
keyboards/millet/doksin/keymaps/via/rules.mk
Normal file
1
keyboards/millet/doksin/keymaps/via/rules.mk
Normal file
|
@ -0,0 +1 @@
|
|||
VIA_ENABLE = yes
|
19
keyboards/millet/doksin/readme.md
Normal file
19
keyboards/millet/doksin/readme.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# DOKСИН
|
||||
|
||||
![DOKСИН](https://i.imgur.com/OaDlfwrh.jpg)
|
||||
|
||||
Can be used as a keyboard...
|
||||
|
||||
* Keyboard Maintainer: [millet](https://github.com/milletmilletmilletmilletmilletmilletmil)
|
||||
* Hardware Supported: The DOKСИН PCB
|
||||
* Hardware Availability: None
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make millet/doksin:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make millet/doksin:default:flash
|
||||
|
||||
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).
|
0
keyboards/millet/doksin/rules.mk
Normal file
0
keyboards/millet/doksin/rules.mk
Normal file
Loading…
Reference in a new issue