Skip to content

Commit

Permalink
[Keyboard] doksin (qmk#22220)
Browse files Browse the repository at this point in the history
  • Loading branch information
milletmilletmilletmilletmilletmilletmil authored and adgai19 committed Nov 14, 2023
1 parent 1413cf4 commit b28f2f3
Show file tree
Hide file tree
Showing 7 changed files with 97 additions and 0 deletions.
31 changes: 31 additions & 0 deletions keyboards/millet/doksin/info.json
Original file line number Diff line number Diff line change
@@ -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 changes: 22 additions & 0 deletions keyboards/millet/doksin/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
@@ -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 change: 1 addition & 0 deletions keyboards/millet/doksin/keymaps/default/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# default keymap for DOKSIN
23 changes: 23 additions & 0 deletions keyboards/millet/doksin/keymaps/via/keymap.c
Original file line number Diff line number Diff line change
@@ -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 change: 1 addition & 0 deletions keyboards/millet/doksin/keymaps/via/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VIA_ENABLE = yes
19 changes: 19 additions & 0 deletions keyboards/millet/doksin/readme.md
Original file line number Diff line number Diff line change
@@ -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).
Empty file.

0 comments on commit b28f2f3

Please sign in to comment.